diff options
| author | Jonathan Robie <jonathan@apache.org> | 2011-01-05 20:41:37 +0000 |
|---|---|---|
| committer | Jonathan Robie <jonathan@apache.org> | 2011-01-05 20:41:37 +0000 |
| commit | 5ce4ca34b031d8fc77b8a9f2779ccb8f6d406e77 (patch) | |
| tree | 2da5df55c787671f85986401502a1d265facf969 | |
| parent | ea851e0d55bf62d7700fe677ec60b5df759d2516 (diff) | |
| download | qpid-python-5ce4ca34b031d8fc77b8a9f2779ccb8f6d406e77.tar.gz | |
Fixes typo in findById function declaration.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1055632 13f79535-47bb-0310-9956-ffa450edef68
| -rwxr-xr-x | tools/src/py/qpid-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/py/qpid-config b/tools/src/py/qpid-config index ebd3f14aa2..27f7d6bbfe 100755 --- a/tools/src/py/qpid-config +++ b/tools/src/py/qpid-config @@ -527,7 +527,7 @@ class BrokerManager: key = args[2] self.broker.getAmqpSession().exchange_unbind(queue=qname, exchange=ename, binding_key=key) - def findBId(self, items, id): + def findById(self, items, id): for item in items: if item.getObjectId() == id: return item |
