Commit d509dfc9 by Michael DeHaan

delete extra else clause

parent 452668ce
......@@ -30,8 +30,7 @@ def get_config(p, section, key, env_var, default):
return p.get(section, key)
except:
return default
else:
return default
return default
def load_config_file():
p = ConfigParser.ConfigParser()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment