aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts/create_remote_repo.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-09-30 11:34:20 +0200
committerGuido Günther <agx@sigxcpu.org>2017-09-30 11:34:20 +0200
commit80189f283ed2d04be25c7f6f833d9d8587e95ca8 (patch)
tree51b87260db19f0247269ebe777f071b2f2d2bc67 /gbp/scripts/create_remote_repo.py
parent4761cf937803cb41a064cf9de288496d734d9eea (diff)
create_remote_repo: another missing python3 string conversion
Diffstat (limited to 'gbp/scripts/create_remote_repo.py')
-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 7a8ca080..1b99d052 100644
--- a/gbp/scripts/create_remote_repo.py
+++ b/gbp/scripts/create_remote_repo.py
@@ -334,7 +334,7 @@ def do_create(options):
print(cmd)
proc = subprocess.Popen(cmd, stdin=subprocess.PIPE)
- proc.communicate(remote_script)
+ proc.communicate(remote_script.encode())
if proc.returncode:
raise GbpError("Error creating remote repository")