Skip to content

Commit

Permalink
Make importer event statuses unique
Browse files Browse the repository at this point in the history
The CANCELED status code was overlapping with the LOADING status code.
  • Loading branch information
jwalgran committed Apr 8, 2015
1 parent 75274b3 commit 37c49e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentreemap/importer/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Meta:
CREATING = 4
FINISHED_CREATING = 5
FAILED_FILE_VERIFICATION = 6
CANCELED = 7
CANCELED = 8

# Original Name of the file
file_name = models.CharField(max_length=255)
Expand Down

0 comments on commit 37c49e8

Please sign in to comment.