فهرست منبع

- "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()