From 60a30e7de956a506b79e566a14a95a15b4b10616 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 19 Oct 2012 21:15:26 -0400 Subject: [PATCH] project: preserve case in .update-copyright.conf options. This is important for aliases in particular. --- update_copyright/project.py | 1 + 1 file changed, 1 insertion(+) diff --git a/update_copyright/project.py b/update_copyright/project.py index ac0e484..34631e9 100644 --- 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('-', '_') -- 2.26.2