summaryrefslogtreecommitdiff
path: root/gbp/config.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-02-19 12:30:54 +0100
committerGuido Günther <agx@sigxcpu.org>2015-02-20 12:40:14 +0100
commit4766e1190a7ccb4c5a8f21ce3e8919637ff9c142 (patch)
tree8bab0ef8f6677f18ffdccf257bf90425ccbdfe10 /gbp/config.py
parent0a4725c045a5a55592dafd41c6ef6f9bab4791cd (diff)
Handle ConfigParser -> configparser rename
to work towards Python3 support Gbp-Dch: Ignore
Diffstat (limited to 'gbp/config.py')
-rw-r--r--gbp/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/config.py b/gbp/config.py
index e724853..cc46cf7 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -17,7 +17,7 @@
"""handles command line and config file option parsing for the gbp commands"""
from optparse import OptionParser, OptionGroup, Option, OptionValueError
-from ConfigParser import SafeConfigParser, NoSectionError
+from six.moves.configparser import SafeConfigParser, NoSectionError
from copy import copy
import os.path