Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Fix usage of incorrect variable in stash error handler
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Dec 8, 2015
1 parent 501edaf commit cbdc02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wptserve/stash.py
Expand Up @@ -119,7 +119,7 @@ def put(self, key, value, path=None):
if internal_key in self.data:
raise StashError("Tried to overwrite existing shared stash value "
"for key %s (old value was %s, new value is %s)" %
(internal_key, self[str(internal_key)], value))
(internal_key, self.data[str(internal_key)], value))
else:
self.data[internal_key] = value

Expand Down

0 comments on commit cbdc02a

Please sign in to comment.