Skip to content

Commit 124586e

Browse files
committed
Fix example data import.
1 parent 23355e5 commit 124586e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/coffee/management/commands/import_flavors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Command(BaseCommand):
99
def handle(self, *args, **options):
10-
with open("example/coffee/management/commands/coffee-flavors.csv", "r") as f:
10+
with open("example/coffee/management/commands/flavors.csv", "r") as f:
1111
csv_reader = csv.reader(f)
1212

1313
for row in csv_reader:

0 commit comments

Comments
 (0)