Index: sitescripts/utils.py |
=================================================================== |
--- a/sitescripts/utils.py |
+++ b/sitescripts/utils.py |
@@ -68,16 +68,17 @@ def get_config(): |
# Server-wide configuration if no custom found |
paths.append('/etc/sitescripts') |
paths.append('/etc/sitescripts.ini') |
for path in paths: |
path = os.path.abspath(path) |
if os.path.exists(path): |
config = SafeConfigParser() |
+ config.optionxform = str |
Sebastian Noack
2014/09/18 16:05:37
Why is this necessary? Won't that break for option
Wladimir Palant
2014/09/18 18:04:14
By default, SafeConfigParser will lower-case all o
Sebastian Noack
2014/09/18 19:01:07
How about a simple no-op?
config.optionxform = la
Wladimir Palant
2014/09/18 19:12:22
Sounds like a good compromise. This will allow usi
|
config.read(path) |
return config |
raise Exception('No config file found. Please put sitescripts.ini into your home directory or /etc') |
def setupStderr(stream=sys.stderr): |
""" |
Sets up sys.stderr to accept Unicode characters, redirects error output to |