Skip to content

Commit

Permalink
error message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkrafka committed Aug 9, 2021
1 parent a4f8e04 commit 1e8eb18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process/management/commands/wiper.py
Expand Up @@ -28,7 +28,7 @@ def process(self, connection, channel, delivery_tag, body):

self._info("Collection {} successfully wiped.".format(collection))
except Collection.DoesNotExist:
error = "Collection with id {} not found".format(input["collection_id"])
error = "Collection with id {} not found".format(input_message["collection_id"])
self._error(error)

self._ack(connection, channel, delivery_tag)

0 comments on commit 1e8eb18

Please sign in to comment.