Skip to content

Commit

Permalink
Avoid f-string in test suite to accomodate Debian 9 with Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-utkin committed Jul 25, 2022
1 parent 5552adf commit e93752e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/cli_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def rnp_encrypt_file_ex(src, dst, recipients=None, passwords=None, aead=None, ci
ret, _, err = run_proc(RNP, params)
if passwords: os.close(pipe)
if ret != 0:
raise_err(f'rnp encryption failed with {cipher}', err)
raise_err('rnp encryption failed with ' + cipher, err)

def rnp_encrypt_and_sign_file(src, dst, recipients, encrpswd, signers, signpswd,
aead=None, cipher=None, z=None, armor=False):
Expand Down

0 comments on commit e93752e

Please sign in to comment.