Skip to content

Commit

Permalink
Fixed wrong var name in import_categories command
Browse files Browse the repository at this point in the history
  • Loading branch information
aherok authored and coordt committed May 8, 2011
1 parent 3542b01 commit cda1d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion categories/management/commands/import_categories.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def handle(self, *file_paths, **options):

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()
Expand Down

0 comments on commit cda1d0f

Please sign in to comment.