]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Remove unused "overwrite" argument to options.parse_config_file
authorBen Darnell <bdarnell@beaker.local>
Thu, 24 Jun 2010 01:01:30 +0000 (18:01 -0700)
committerBen Darnell <bdarnell@beaker.local>
Thu, 24 Jun 2010 01:01:30 +0000 (18:01 -0700)
tornado/options.py

index 66bce091e725603421939f035fe7aff5d88c1cb0..a0bb1a78002672da66686d9ce663992f70bedac8 100644 (file)
@@ -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)