We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd5d15 commit a9ba8c1Copy full SHA for a9ba8c1
src/ugrd/crypto/gpg.py
@@ -1,9 +1,9 @@
1
__author__ = 'desultory'
2
-__version__ = '1.0.0'
+__version__ = '1.0.1'
3
4
5
def start_agent(self) -> str:
6
""" Start the GPG agent. """
7
- args = " ".join(self['gpg_agent_args']) if self['gpg_agent_args'] else ""
8
- return f"gpg-agent {args}"
+ args = ' ' + " ".join(self['gpg_agent_args']) if self['gpg_agent_args'] else ""
+ return f"gpg-agent {args}"
9
0 commit comments