diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-09-07 15:53:57 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-09-07 15:53:57 +0000 |
| commit | 0548495a0ccb22c7e4bf5e601327ab10c68a0205 (patch) | |
| tree | f82c6f91d67852f05d38680dc26443383b91c8e9 | |
| parent | 1198e6a7a1e5f2aac1c486027f654c0f9c899b96 (diff) | |
| download | qpid-python-0548495a0ccb22c7e4bf5e601327ab10c68a0205.tar.gz | |
NO-JIRA: fix bad argument passing in qpid-printevents tool.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1382075 13f79535-47bb-0310-9956-ffa450edef68
| -rwxr-xr-x | qpid/tools/src/py/qpid-printevents | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/tools/src/py/qpid-printevents b/qpid/tools/src/py/qpid-printevents index 0d0f1a0782..d0e2ba9c49 100755 --- a/qpid/tools/src/py/qpid-printevents +++ b/qpid/tools/src/py/qpid-printevents @@ -72,7 +72,7 @@ class EventReceiver(Thread): isOpen = False while self.running: try: - conn = Connection.establish(self.url, **options) + conn = Connection.establish(self.url, **self.options) isOpen = True self.printer.pr(strftime("%c", gmtime(time())) + " NOTIC qpid-printevents:brokerConnected broker=%s" % self.url) |
