aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts/create_remote_repo.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/scripts/create_remote_repo.py
parentec7d0cf0f90a4acd5ff0d25915f21e4b522740ed (diff)
Kill six.moves
Diffstat (limited to 'gbp/scripts/create_remote_repo.py')
-rw-r--r--gbp/scripts/create_remote_repo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/scripts/create_remote_repo.py b/gbp/scripts/create_remote_repo.py
index 1b99d052..ee064e5b 100644
--- a/gbp/scripts/create_remote_repo.py
+++ b/gbp/scripts/create_remote_repo.py
@@ -22,12 +22,12 @@ from __future__ import print_function
import sys
import os
-from six.moves import urllib
+import urllib
import subprocess
import tty
import termios
import re
-from six.moves import configparser
+import configparser
from gbp.deb.changelog import ChangeLog, NoChangeLogError
from gbp.command_wrappers import (CommandExecFailed, GitCommand)