projects
/
tools
/
git-buildpackage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7717b39
)
config: Use ConfigParser instead of deprecated SafeConfigParser
author
Guido Günther
<agx@sigxcpu.org>
Wed, 25 May 2022 16:13:38 +0000
(18:13 +0200)
committer
Guido Günther
<agx@sigxcpu.org>
Wed, 25 May 2022 16:13:38 +0000
(18:13 +0200)
Closes: #1011344
gbp/config.py
patch
|
blob
|
history
diff --git
a/gbp/config.py
b/gbp/config.py
index f80616e5f5e98d61b0d5f9290862a043a4ad3cb0..ef5570d1e9fbd7f38b8e7edca376128b94df7704 100644
(file)
--- a/
gbp/config.py
+++ b/
gbp/config.py
@@
-581,7
+581,7
@@
class GbpOptionParser(OptionParser):
self.prefix = prefix
self.config = {}
self.valid_options = []
- self.config_parser = configparser.
Safe
ConfigParser()
+ self.config_parser = configparser.ConfigParser()
self._warned_old_gbp_conf = False
try: