diff options
| author | jason | 2019-10-25 10:55:55 -0600 |
|---|---|---|
| committer | GitHub | 2019-10-25 10:55:55 -0600 |
| commit | 04702253c51579c883c93bc72e4f94c8f258f434 (patch) | |
| tree | cf19d85fbcb358c410cafb7e1fbbff5592a15ec4 /bin/logwatcher.py | |
| parent | 9cb7b0e7d44b8dfe5eaf2d7df133a67e072e9481 (diff) | |
| parent | 06c1993646618d750e27aa3b7f9d80c4226e1924 (diff) | |
| download | eventmq-0.3.11.tar.gz eventmq-0.3.11.zip | |
Merge pull request #71 from tpavelchak/feature/add-python-3-7-support0.3.11
Add Python 3.7 support
Diffstat (limited to 'bin/logwatcher.py')
| -rw-r--r-- | bin/logwatcher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/logwatcher.py b/bin/logwatcher.py index dd2860f..1abeb4a 100644 --- a/bin/logwatcher.py +++ b/bin/logwatcher.py | |||
| @@ -13,4 +13,4 @@ while True: | |||
| 13 | 13 | ||
| 14 | if events.get(s) == zmq.POLLIN: | 14 | if events.get(s) == zmq.POLLIN: |
| 15 | msg = s.recv_multipart() | 15 | msg = s.recv_multipart() |
| 16 | print msg # noqa | 16 | print(msg) # noqa |