Thanks, but the test suite fails unless I apply this first: Return None instead of crashing on undefined integer config items Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> diff --git a/stgit/config.py b/stgit/config.py index 8934445..5b47580 100644 --- a/stgit/config.py +++ b/stgit/config.py @@ -65,7 +65,9 @@ class GitConfig: def getint(self, name): value = self.get(name) - if value.isdigit(): + if value == None: + return None + elif value.isdigit(): return int(value) else: raise GitConfigException, 'Value for "%s" is not an integer: "%s"' % (name, value) -- Karl Hasselström, kha@xxxxxxxxxxx www.treskal.com/kalle -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html