Skip to content

Commit 716fc31

Browse files
authored
fix: typos in the importtracker command error (#671)
1 parent 0b0c26d commit 716fc31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exodus/trackers/management/commands/importtrackers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def add_arguments(self, parser):
1515

1616
def handle(self, *args, **options):
1717
if Tracker.objects.all()[:1].count() > 0:
18-
raise CommandError('Your trackers table in not empty, please truncate its before the import')
18+
raise CommandError('Your trackers table is not empty, please truncate it before the import')
1919

2020
json_str = self.read_file(options['filename']).decode('utf-8')
2121
trackers = json.loads(json_str)

0 commit comments

Comments
 (0)