Commit 8e6958e0169cb6a6d67b39e4cf3d812903d57d66
1 parent
80c3e389
Exists in
master
and in
39 other branches
Using default value from settings
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
colab/super_archives/management/commands/import_emails.py
| ... | ... | @@ -276,7 +276,7 @@ class Command(BaseCommand, object): |
| 276 | 276 | os.mkdir(os.path.dirname(self.lock_file), 0755) |
| 277 | 277 | |
| 278 | 278 | archives_path = options.get('archives_path') |
| 279 | - self.log('Using archives_path `%s`' % self.default_archives_path) | |
| 279 | + self.log('Using archives_path `%s`' % settings.SUPER_ARCHIVES_PATH) | |
| 280 | 280 | |
| 281 | 281 | if not os.path.exists(archives_path): |
| 282 | 282 | msg = 'archives_path ({}) does not exist'.format(archives_path) | ... | ... |