manage.py: fix path for extra apps

This commit is contained in:
Benjamin Dauvergne 2013-04-23 18:35:14 +02:00
parent c80a6bf7c7
commit 3f77d3615c
1 changed files with 3 additions and 2 deletions

View File

@ -2,9 +2,10 @@
import os
import sys
import compte_agglo_montpellier
sys.path.append(os.path.join(
os.path.dirname(__file__),
'compte_agglo_montpellier',
os.path.dirname(compte_agglo_montpellier.__file__),
'apps'))
if __name__ == "__main__":