From fb293290c77b0b89a5e0a4d01141324111ebc193 Mon Sep 17 00:00:00 2001 From: Joshua Boverhof Date: Mon, 23 Jan 2006 21:36:32 +0000 Subject: [PATCH] ---------------------------------------------------------------------- Committing in . Modified Files: ZSI/TCapache.py ZSI/TCcompound.py ZSI/TCtimes.py ZSI/writer.py ZSI/generate/wsdl2dispatch.py ZSI/wstools/Utility.py -- finished the _get_idstr conversion, and added a "createMethodBody" method to wsdl2dispatch.WSAServiceModuleWriter which is now called in "setUp". ---------------------------------------------------------------------- --- Utility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utility.py b/Utility.py index a4b90df..17b1e99 100755 --- a/Utility.py +++ b/Utility.py @@ -101,7 +101,7 @@ class DOMException(Exception): class Base: """Base class for instance level Logging""" def __init__(self, module=__name__): - self.logger = logging.getLogger('%s-%s(%x)' %(module, self.__class__, get_idstr(self))) + self.logger = logging.getLogger('%s-%s(%s)' %(module, self.__class__, _get_idstr(self))) class HTTPResponse: