Skip to content
This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Commit 76cce3e

Browse files
Bugfix: handle Control-H as backspace.
1 parent 0b7df9a commit 76cce3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deployer/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def read(self):
585585
self.print_command()
586586

587587
# Backspace
588-
elif c == '\x7f': # (127) Backspace
588+
elif c in ('\x08', '\x7f'): # (127) Backspace
589589
self.backspace()
590590

591591
# Escape characters for cursor movement

0 commit comments

Comments
 (0)