aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/config.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-10-20 12:37:57 +0200
committerGuido Günther <agx@sigxcpu.org>2017-10-20 12:37:57 +0200
commit99b525843e130611798a8e127b5f3cc11dbb26be (patch)
tree715c53e80c46f243adabb93853e0d1a757deaff7 /gbp/config.py
parentec7d0cf0f90a4acd5ff0d25915f21e4b522740ed (diff)
Kill six.moves
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 d4b726a7..8acf15da 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 six.moves import configparser
+import configparser
from copy import copy
import errno
import os.path