summaryrefslogtreecommitdiff
path: root/gbp/config.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-02-13 18:56:28 +0100
committerGuido Günther <agx@sigxcpu.org>2012-02-13 18:56:28 +0100
commit4a8db7a62af7a7834c62d0e389ac4b2178fb44ce (patch)
tree525016a0a296066a0f3d82745e9c99115d1550bd /gbp/config.py
parentbca9f76135c5b4975b261018f0c9013243f38846 (diff)
Rename GbpOptionParserCommon common to GbpOptionParser
Diffstat (limited to 'gbp/config.py')
-rw-r--r--gbp/config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gbp/config.py b/gbp/config.py
index 87334f0..090c4f7 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -51,7 +51,7 @@ class GbpOption(Option):
TYPE_CHECKER['path'] = expand_path
TYPE_CHECKER['tristate'] = check_tristate
-class GbpOptionParserCommon(OptionParser):
+class GbpOptionParser(OptionParser):
"""
Handles commandline options and parsing of config files
@ivar command: the gbp command we store the options for
@@ -326,11 +326,11 @@ class GbpOptionGroup(OptionGroup):
self.add_config_file_option(option_name="no-%s" % option_name, dest=dest, help=neg_help, action="store_false")
-class GbpOptionParserDebian(GbpOptionParserCommon):
+class GbpOptionParserDebian(GbpOptionParser):
"""
Handles commandline options and parsing of config files for Debian tools
"""
- defaults = dict(GbpOptionParserCommon.defaults)
+ defaults = dict(GbpOptionParser.defaults)
defaults.update( {
'builder' : 'debuild -i -I',
'cleaner' : 'debuild -d clean',