diff options
author | Rob Austein <sra@hactrn.net> | 2007-08-25 15:09:49 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-08-25 15:09:49 +0000 |
commit | 7496e2285b84a84fbf5902b60096a5fbe1521b17 (patch) | |
tree | 627e81cc27da21c0983cc9f18ecbf4bf338a0692 /scripts/rpki/config.py | |
parent | f0a151ee8f1880a416ceac8589b843b2ae4f0557 (diff) |
Checkpoint
svn path=/scripts/http-client.py; revision=911
Diffstat (limited to 'scripts/rpki/config.py')
-rw-r--r-- | scripts/rpki/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpki/config.py b/scripts/rpki/config.py index 6d5834d3..01dfb522 100644 --- a/scripts/rpki/config.py +++ b/scripts/rpki/config.py @@ -21,7 +21,7 @@ class parser(ConfigParser.RawConfigParser): """ matches = [] if self.has_option(section, option): - matches.append((0, self.get(section, option))) + matches.append((-1, self.get(section, option))) for key, value in self.items(section): s = key.rsplit(".", 1) if len(s) == 2 and s[0] == option and s[1].isdigit(): |