From: Brian Warner <warner@lothar.com>
Date: Fri, 1 Dec 2006 03:32:13 +0000 (-0700)
Subject: manhole: ctrl-h is Backspace, not Delete. War Is Peace, Freedom Is Slavery, etc
X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~512
X-Git-Url: https://git.rkrishnan.org/frontends/index.php?a=commitdiff_plain;h=d52510708177edfdcf1002b3a5af85a256d08247;p=tahoe-lafs%2Ftahoe-lafs.git

manhole: ctrl-h is Backspace, not Delete. War Is Peace, Freedom Is Slavery, etc
---

diff --git a/allmydata/manhole.py b/allmydata/manhole.py
index 02daaf5b..f138de0b 100644
--- a/allmydata/manhole.py
+++ b/allmydata/manhole.py
@@ -81,7 +81,7 @@ class AuthorizedKeysChecker(conchc.SSHPublicKeyDatabase):
 class ModifiedColoredManhole(manhole.ColoredManhole):
     def connectionMade(self):
         manhole.ColoredManhole.connectionMade(self)
-        self.keyHandlers["\x08"] = self.handle_DELETE
+        self.keyHandlers["\x08"] = self.handle_BACKSPACE
         self.keyHandlers["\x15"] = self.handle_KILLLINE
 
     def handle_KILLLINE(self):