ソースを参照

Merge pull request #1324 from jdeniau/patch-1

Missing parenthesis
Ask Solem Hoel 12 年 前
コミット
25542e1c77
1 ファイル変更1 行追加1 行削除
  1. 1 1
      docs/userguide/monitoring.rst

+ 1 - 1
docs/userguide/monitoring.rst

@@ -558,7 +558,7 @@ Combining these you can easily process events in real-time:
 
             print('Workers online: %r' % ', '.join(
                 worker for worker in state.workers if worker.alive
-            )
+            ))
 
         with app.connection() as connection:
             recv = app.events.Receiver(connection, handlers={'*': on_event})