From b08f16897e3f5c65c155d6d63c380003510430c9 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Mon, 16 Nov 2009 12:05:50 +0000 Subject: added address support for specifying node type and properties git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@880720 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/qpid/ops.py') diff --git a/python/qpid/ops.py b/python/qpid/ops.py index 61853522e9..a8ba826857 100644 --- a/python/qpid/ops.py +++ b/python/qpid/ops.py @@ -259,8 +259,8 @@ COMPOUND = {} COMMANDS = {} CONTROLS = {} -for name, bases, dict in types: - t = type(name, bases, dict) +for name, bases, _dict in types: + t = type(name, bases, _dict) vars[name] = t if issubclass(t, Command): -- cgit v1.2.1