Fix a misnamed process thread variable.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-06-09 08:25:34 +00:00
parent 5e47dd7351
commit 1afcda8364
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 2 deletions

View File

@ -468,9 +468,8 @@ class GPG(GPGBase):
args.append(key)
proc = self._open_subprocess(args)
result = self._result_map['list'](self)
self._collect_output(proc, result, stdin=p.stdin)
self._collect_output(proc, result, stdin=proc.stdin)
return result
def gen_key(self, input):