summaryrefslogtreecommitdiff
path: root/python/qpid/ops.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-11-16 12:05:50 +0000
committerRafael H. Schloming <rhs@apache.org>2009-11-16 12:05:50 +0000
commitb08f16897e3f5c65c155d6d63c380003510430c9 (patch)
tree56434bda6a4135e0ae209a19424916dd21779232 /python/qpid/ops.py
parentefc6473096622a01b2a3907093431b49d8ebfb1e (diff)
downloadqpid-python-b08f16897e3f5c65c155d6d63c380003510430c9.tar.gz
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
Diffstat (limited to 'python/qpid/ops.py')
-rw-r--r--python/qpid/ops.py4
1 files changed, 2 insertions, 2 deletions
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):