Fix uninitialized variable error.

This commit is contained in:
Nick Daly 2012-06-18 09:00:15 -05:00
parent b51ae97f5e
commit 01998366a2

View File

@ -565,6 +565,8 @@ class Santiago(object):
debug_log("bad key {0}".format(key))
return
message = ""
try:
data = self.shelf[key]
except KeyError as e: