check one more INTR
This commit is contained in:
parent
2da08cf0e9
commit
bbd43431ee
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
from os import tmpfile
|
from os import tmpfile
|
||||||
import locale
|
import locale
|
||||||
|
from common import helpers
|
||||||
|
|
||||||
USE_GPG = True
|
USE_GPG = True
|
||||||
|
|
||||||
|
@ -54,7 +55,7 @@ else:
|
||||||
|
|
||||||
resp = {}
|
resp = {}
|
||||||
while 1:
|
while 1:
|
||||||
line = child_stdout.readline()
|
line = helpers.temp_failure_retry(child_stdout.readline())
|
||||||
if line == "": break
|
if line == "": break
|
||||||
line = line.rstrip()
|
line = line.rstrip()
|
||||||
if line[0:9] == '[GNUPG:] ':
|
if line[0:9] == '[GNUPG:] ':
|
||||||
|
|
Loading…
Reference in New Issue