mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
Fixed wrong var name in import_categories command
This commit is contained in:
parent
3542b019c5
commit
cda1d0fd5e
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ class Command(BaseCommand):
|
|||
|
||||
for file_path in file_paths:
|
||||
if not os.path.isfile(file_path):
|
||||
print "File %s not found." % filename
|
||||
print "File %s not found." % file_path
|
||||
continue
|
||||
f = file(file_path, 'r')
|
||||
data = f.readlines()
|
||||
|
|
|
|||
Loading…
Reference in a new issue