Skip to content

Commit

Permalink
Updated import providers command
Browse files Browse the repository at this point in the history
  • Loading branch information
jbc25 committed Jun 25, 2024
1 parent 0ec77e9 commit 95c7a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion market/management/commands/import_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def handle(self, *args, **options):
print(f"Node shortname not found: {node_shortname}")
return

with open(csvfile, 'r', encoding="utf8") as fp:
with open(f"data/{csvfile}", 'r', encoding="utf8") as fp:
csv_reader = csv.reader(fp, delimiter=';')
line = 0

Expand Down

0 comments on commit 95c7a2b

Please sign in to comment.