parent
9b6cfcafa2
commit
fb9581389a
1 changed files with 6 additions and 1 deletions
|
@ -707,7 +707,12 @@ Enregistrez le fichier vide pour annuler.\n"""
|
|||
else:
|
||||
passfile = value
|
||||
(sin, sout) = gpg(options, 'decrypt')
|
||||
sin.write(passfile['contents'].encode("utf-8"))
|
||||
contents = passfile['contents']
|
||||
# <ducktape> (waddle waddle)
|
||||
if isinstance(contents, list):
|
||||
contents = contents[-1]
|
||||
# </ducktape>
|
||||
sin.write(contents.encode("utf-8"))
|
||||
sin.close()
|
||||
texte = sout.read().decode("utf-8")
|
||||
if new_roles is None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue