diff options
Diffstat (limited to 'archaeological_operations/management/commands')
-rwxr-xr-x | archaeological_operations/management/commands/import_operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/management/commands/import_operations.py b/archaeological_operations/management/commands/import_operations.py index cdcbff54b..3cf4a569d 100755 --- a/archaeological_operations/management/commands/import_operations.py +++ b/archaeological_operations/management/commands/import_operations.py @@ -33,7 +33,7 @@ class Command(BaseCommand): def handle(self, *args, **options): if not args or not args[0]: - raise CommandError("No file provided." % args[0]) + raise CommandError("No file provided.") filename = args[0] update = len(args) > 1 and args[1] file_type = len(args) > 1 and args[2] |