summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcryzed <cryzed@googlemail.com>2018-04-23 19:16:51 +0200
committercryzed <cryzed@googlemail.com>2018-04-23 19:16:51 +0200
commit92aedf84f57123a42b82d45ff5823abd56729754 (patch)
tree6e67a90a4ebe37d998a700a01657a05a115ece17
parent6825dfb8d8706a14980f66ca7b3519a631d08c6f (diff)
downloadqutebrowser-92aedf84f57123a42b82d45ff5823abd56729754.tar.gz
qutebrowser-92aedf84f57123a42b82d45ff5823abd56729754.zip
qute-pass: Don't use f-strings
-rwxr-xr-xmisc/userscripts/qute-pass2
1 files changed, 1 insertions, 1 deletions
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):