From af5d560e7535a413a94a27be5164fb54761d80f6 Mon Sep 17 00:00:00 2001 From: Shikhar Bhushan Date: Mon, 20 Apr 2009 08:38:45 +0000 Subject: [PATCH] git-svn-id: http://ncclient.googlecode.com/svn/trunk@33 6dbcf712-26ac-11de-a2f3-1373824ab735 --- ncclient/listener.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ncclient/listener.py b/ncclient/listener.py index 6ed2481..b068793 100644 --- a/ncclient/listener.py +++ b/ncclient/listener.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from content import rpc +import content class SessionListener: @@ -32,7 +32,7 @@ class SessionListener: ### Events def reply(self, raw): - id = rpc.parse(raw) + id = content.parse_message(raw) if id: self._id2rpc[id]._deliver(raw) else: -- 1.7.10.4