浏览代码

Converting a code comment to pydoc.

Jens Rantil 13 年之前
父节点
当前提交
e280de45e8
共有 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)