gpg: fix bytes/str issue with GPG user ID

This commit is contained in:
Roman Zeyde
2016-10-28 22:34:59 +03:00
parent a20b1ed2a8
commit efdb9fcfb5
2 changed files with 2 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ def identity_to_string(identity_dict):
result.append(':' + identity_dict['port'])
if identity_dict.get('path'):
result.append(identity_dict['path'])
log.debug('identity parts: %s', result)
return ''.join(result)