From: Ben Darnell Date: Thu, 24 Jun 2010 01:01:30 +0000 (-0700) Subject: Remove unused "overwrite" argument to options.parse_config_file X-Git-Tag: v1.0.0~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60ef8d5d909d25f4c1c5e35bef199b0799cd264e;p=thirdparty%2Ftornado.git Remove unused "overwrite" argument to options.parse_config_file --- diff --git a/tornado/options.py b/tornado/options.py index 66bce091e..a0bb1a780 100644 --- a/tornado/options.py +++ b/tornado/options.py @@ -135,7 +135,7 @@ def parse_command_line(args=None): return remaining -def parse_config_file(path, overwrite=True): +def parse_config_file(path): """Parses and loads the Python config file at the given path.""" config = {} execfile(path, config, config)