diff options
-rwxr-xr-x | scripts/combo-layer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer index 9b50e9873d..a634dd69d2 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer | |||
@@ -80,7 +80,7 @@ class Configuration(object): | |||
80 | logger.debug("Loading config file %s" % self.conffile) | 80 | logger.debug("Loading config file %s" % self.conffile) |
81 | self.parser = configparser.ConfigParser() | 81 | self.parser = configparser.ConfigParser() |
82 | with open(self.conffile) as f: | 82 | with open(self.conffile) as f: |
83 | self.parser.readfp(f) | 83 | self.parser.read_file(f) |
84 | 84 | ||
85 | # initialize default values | 85 | # initialize default values |
86 | self.commit_msg_template = "Automatic commit to update last_revision" | 86 | self.commit_msg_template = "Automatic commit to update last_revision" |