From 4766e1190a7ccb4c5a8f21ce3e8919637ff9c142 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 19 Feb 2015 12:30:54 +0100 Subject: Handle ConfigParser -> configparser rename to work towards Python3 support Gbp-Dch: Ignore --- gbp/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gbp/config.py') 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 -- cgit v1.2.3