From 01998366a294bd6f8d5ebe25a6fff195b90de156 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Mon, 18 Jun 2012 09:00:15 -0500 Subject: [PATCH] Fix uninitialized variable error. --- ugly_hacks/santiago/santiago.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ugly_hacks/santiago/santiago.py b/ugly_hacks/santiago/santiago.py index 56c6e0f38..d7669de68 100644 --- a/ugly_hacks/santiago/santiago.py +++ b/ugly_hacks/santiago/santiago.py @@ -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: