From 9cf5db29e0969cd1b77760a5183354af9d6dbd8e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 16 Apr 2013 18:09:54 +0200 Subject: Small fix on DBF import of operations --- archaeological_operations/management/commands/import_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_operations/management/commands') 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] -- cgit v1.2.3