diff options
-rw-r--r-- | gemato/openpgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gemato/openpgp.py b/gemato/openpgp.py index 48b7396..c854d1a 100644 --- a/gemato/openpgp.py +++ b/gemato/openpgp.py @@ -187,7 +187,7 @@ class OpenPGPEnvironment(OpenPGPSystemEnvironment): def __init__(self, debug=False): super(OpenPGPEnvironment, self).__init__(debug=debug) - self._home = tempfile.mkdtemp() + self._home = tempfile.mkdtemp(prefix='gemato.') with open(os.path.join(self._home, 'dirmngr.conf'), 'w') as f: f.write('''# autogenerated by gemato |