瀏覽代碼

Merge pull request #72 from JensRantil/minor_pydoc_fix

Converting a code comment to pydoc
Mike Naberezny 13 年之前
父節點
當前提交
545af425d0
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      supervisor/options.py

+ 1 - 2
supervisor/options.py

@@ -156,7 +156,6 @@ class Options:
         env=...      -- if not None, name of environment variable that
                         overrides the configuration file or default
         """
-
         if flag is not None:
             if handler is not None:
                 raise ValueError, "use at most one of flag= and handler="
@@ -285,7 +284,7 @@ class Options:
         self.process_config_file()
 
     def process_config_file(self, do_usage=True):
-        # Process config file
+        """Process config file."""
         if not hasattr(self.configfile, 'read'):
             self.here = os.path.abspath(os.path.dirname(self.configfile))
             set_here(self.here)