Fixed add_key stalling indefinitely, and test code leaking into production setting

reviewable/pr18780/r1
Juha Litola 12 years ago
parent 25d6975f67
commit 5d1536a7c5

@ -105,7 +105,7 @@ def download_key(url):
def add_key(key): def add_key(key):
return call("apt-key add -", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE) p = Popen("apt-key add -", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
(_, _) = p.communicate(key) (_, _) = p.communicate(key)
return p.returncode == 0 return p.returncode == 0

Loading…
Cancel
Save