From 92aedf84f57123a42b82d45ff5823abd56729754 Mon Sep 17 00:00:00 2001 From: cryzed Date: Mon, 23 Apr 2018 19:16:51 +0200 Subject: [PATCH] qute-pass: Don't use f-strings --- misc/userscripts/qute-pass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/userscripts/qute-pass b/misc/userscripts/qute-pass index fbe49a48a..fc897be07 100755 --- a/misc/userscripts/qute-pass +++ b/misc/userscripts/qute-pass @@ -111,7 +111,7 @@ def dmenu(items, invocation, encoding): def fake_key_raw(text): for character in text: - qute_command(f'fake-key {character}') + qute_command('fake-key {}'.format(character)) def main(arguments):