summaryrefslogtreecommitdiff
path: root/chimere/management/commands/chimere_import.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/management/commands/chimere_import.py')
-rw-r--r--chimere/management/commands/chimere_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/management/commands/chimere_import.py b/chimere/management/commands/chimere_import.py
index 2f15632..c02b4a4 100644
--- a/chimere/management/commands/chimere_import.py
+++ b/chimere/management/commands/chimere_import.py
@@ -45,7 +45,7 @@ class Command(BaseCommand):
'ascii', 'ignore'))
self.stdout.flush()
self.stdout.write('\nImport ID: ')
- v = raw_input()
+ v = input()
try:
importers = [Importer.objects.get(pk=int(v))]
except (ValueError, ObjectDoesNotExist):