ソースを参照

- "supervisord -h" and "supervisorctl -h" did not work (traceback
instead of showing help view).

Chris McDonough 19 年 前
コミット
ab885eea59
3 ファイル変更7 行追加0 行削除
  1. 5 0
      CHANGES.txt
  2. 1 0
      src/supervisor/supervisorctl
  3. 1 0
      src/supervisor/supervisord

+ 5 - 0
CHANGES.txt

@@ -1,3 +1,8 @@
+Next
+
+  - "supervisord -h" and "supervisorctl -h" did not work (traceback
+    instead of showing help view).
+
 2.0
 
   - pidfile written in daemon mode had incorrect pid.

+ 1 - 0
src/supervisor/supervisorctl

@@ -1,4 +1,5 @@
 #!/usr/bin/python
 from supervisor.supervisorctl import main
+from supervisor.supervisorctl import __doc__
 main()
 

+ 1 - 0
src/supervisor/supervisord

@@ -1,4 +1,5 @@
 #!/usr/bin/python
 from supervisor.supervisord import main
+from supervisor.supervisord import __doc__
 main()