فهرست منبع

--configure should be --configuration. (Mike Naberezny)

Chris McDonough 17 سال پیش
والد
کامیت
394899304c
2فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 3 0
      CHANGES.txt
  2. 1 1
      src/supervisor/options.py

+ 3 - 0
CHANGES.txt

@@ -159,6 +159,9 @@ Next Release
     platform) but it should be trivially generalizable to other
     operating systems.
 
+  - The long form "--configuration" (-c) command line option for
+    supervisord was broken.  Reported by Mike Orr.  (Mike Naberezny)
+
 3.0a2
 
   - Fixed the README.txt example for defining the supervisor RPC

+ 1 - 1
src/supervisor/options.py

@@ -90,7 +90,7 @@ class Options:
         self.required_map = {}
         self.environ_map = {}
         self.add(None, None, "h", "help", self.help)
-        self.add("configfile", None, "c:", "configure=")
+        self.add("configfile", None, "c:", "configuration=")
 
     def help(self, dummy):
         """Print a long help message to stdout and exit(0).