From d985b703333d734468d6986233248f2a59d5d2bb Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Fri, 12 Feb 2010 11:21:14 +0100 Subject: [PATCH] fix local variable 'ice' referenced before assignment --- pyweb/mumble/MumbleCtlIce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/mumble/MumbleCtlIce.py b/pyweb/mumble/MumbleCtlIce.py index 20230c0..6e5c988 100644 --- a/pyweb/mumble/MumbleCtlIce.py +++ b/pyweb/mumble/MumbleCtlIce.py @@ -72,10 +72,10 @@ def MumbleCtlIce( connstring ): raise EnvironmentError( "The slice file name MUST end with '.ice'." ) Ice.loadSlice( settings.SLICE ) - ice = Ice.initialize() import Murmur + ice = Ice.initialize() prx = ice.stringToProxy( connstring.encode("utf-8") ) meta = Murmur.MetaPrx.checkedCast(prx)