aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCarsten Schoenert <c.schoenert@t-online.de>2018-06-10 07:03:01 +0200
committerGuido Günther <agx@sigxcpu.org>2018-06-10 12:17:43 +0200
commit50b92235c39731f82a0c9de8799b2b0853af6aa3 (patch)
tree819d5cd781ffe5be56a14a4950b3897925bf8e5f
parent48ef0ecff04f52734a3e0424201df6f303d1c9cd (diff)
create_remote_repo: import urllib.parse
urllib.parse did not get imported in packaegs without changelog. Signed-off-by: Guido Günther <agx@sigxcpu.org>
-rw-r--r--gbp/scripts/create_remote_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/scripts/create_remote_repo.py b/gbp/scripts/create_remote_repo.py
index b744c255..6c1ff7a0 100644
--- a/gbp/scripts/create_remote_repo.py
+++ b/gbp/scripts/create_remote_repo.py
@@ -20,7 +20,7 @@
import sys
import os
-import urllib
+import urllib.parse
import subprocess
import tty
import termios