diff options
Diffstat (limited to 'pathreport.py')
-rw-r--r-- | pathreport.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pathreport.py b/pathreport.py index 698ea8f..d6d0a00 100644 --- a/pathreport.py +++ b/pathreport.py @@ -1,12 +1,14 @@ #!/usr/bin/python
-from .settings import *
import sys
import os
import string
import re
import urllib.parse
+
import django
+from .settings import *
+
pathsdict={
"ADMIN_MEDIA_PREFIX" : ADMIN_MEDIA_PREFIX,
"ADMIN_MEDIA_PREFIX" : ADMIN_MEDIA_PREFIX,
@@ -57,4 +59,3 @@ for p in bycodes: byvals = sorted(pathsdict, key=pathsdict.__getitem__)
for p in byvals:
print(pathsdict[p] , sep2, p)
-
\ No newline at end of file |