util.read_config_file() no longer needed; removing.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 19 Jun 2011 16:10:45 +0000 (11:10 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 19 Jun 2011 16:10:45 +0000 (11:10 -0500)
mediagoblin/util.py

index fc380f4120f617473efe0e9e90994bdcd2fb662b..865add79f4b9ee7fc9c098073b1423da87e796ab 100644 (file)
@@ -352,28 +352,6 @@ def get_locale_from_request(request):
     return locale_to_lower_upper(target_lang)
 
 
-def read_config_file(conf_file):
-    """
-    Read a paste deploy style config file and process it.
-    """
-    if not os.path.exists(conf_file):
-        raise IOError(
-            "MEDIAGOBLIN_CONFIG not set or file does not exist")
-
-    parser = NicerConfigParser(conf_file)
-    parser.read(conf_file)
-    parser._defaults.setdefault(
-        'here', os.path.dirname(os.path.abspath(conf_file)))
-    parser._defaults.setdefault(
-        '__file__', os.path.abspath(conf_file))
-
-    mgoblin_conf = dict(
-        [(section_name, dict(parser.items(section_name)))
-         for section_name in parser.sections()])
-
-    return mgoblin_conf
-
-
 # A super strict version of the lxml.html cleaner class
 HTML_CLEANER = Cleaner(
     scripts=True,