summaryrefslogtreecommitdiff
path: root/misc/userscripts/qute-bitwarden
diff options
context:
space:
mode:
Diffstat (limited to 'misc/userscripts/qute-bitwarden')
-rwxr-xr-xmisc/userscripts/qute-bitwarden2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/userscripts/qute-bitwarden b/misc/userscripts/qute-bitwarden
index f8629d1dc..30e7c6f2d 100755
--- a/misc/userscripts/qute-bitwarden
+++ b/misc/userscripts/qute-bitwarden
@@ -196,7 +196,7 @@ def dmenu(items, invocation, encoding):
def fake_key_raw(text):
for character in text:
# Escape all characters by default, space requires special handling
- sequence = '" "' if character == ' ' else '\{}'.format(character)
+ sequence = '" "' if character == ' ' else r'\{}'.format(character)
qute_command('fake-key {}'.format(sequence))