Add initialization of GPG.temp_keyring and GPG.temp_secring objects.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-27 08:15:50 +00:00
parent 1dfadbf32f
commit e501afb6a7
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 6 additions and 1 deletions

View File

@ -474,7 +474,12 @@ use_agent: %s
str(self.use_agent))) str(self.use_agent)))
self._batch_dir = os.path.join(self.homedir, 'batch-files') self._batch_dir = os.path.join(self.homedir, 'batch-files')
self._keys_dir = os.path.join(self.homedir, 'generated-keys') self._key_dir = os.path.join(self.homedir, 'generated-keys')
#: The keyring used in the most recently created batch file
self.temp_keyring = None
#: The secring used in the most recently created batch file
self.temp_secring = None
## check that everything runs alright: ## check that everything runs alright:
proc = self._open_subprocess(["--list-config", "--with-colons"]) proc = self._open_subprocess(["--list-config", "--with-colons"])