projects
/
update-copyright.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28e44f9
)
project: preserve case in .update-copyright.conf options.
author
W. Trevor King
<wking@tremily.us>
Sat, 20 Oct 2012 01:15:26 +0000
(21:15 -0400)
committer
W. Trevor King
<wking@tremily.us>
Sat, 20 Oct 2012 01:15:26 +0000
(21:15 -0400)
This is important for aliases in particular.
update_copyright/project.py
patch
|
blob
|
history
diff --git
a/update_copyright/project.py
b/update_copyright/project.py
index ac0e4845f585bf2653a313da0022fbc33524f059..34631e9206f506a70466a8a9ec39f7edfc18b13a 100644
(file)
--- a/
update_copyright/project.py
+++ b/
update_copyright/project.py
@@
-59,6
+59,7
@@
class Project (object):
def load_config(self, stream):
parser = _configparser.RawConfigParser()
+ parser.optionxform = str
parser.readfp(stream)
for section in parser.sections():
clean_section = section.replace('-', '_')