Skip to content

Commit 6e5633d

Browse files
remove logging
--HG-- branch : scroll-frontend
1 parent 092de04 commit 6e5633d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

bpython/scrollfrontend/interaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def process_event(self, e):
6161
else:
6262
self.response_queue.put(False)
6363
self.escape()
64-
elif e == "\x1b":
64+
elif e == ['\x1b', '\t']:
6565
self.response_queue.put(False)
6666
self.escape()
6767
else: # add normal character

bpython/scrollfrontend/repl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@
4444
#TODO prettier completion box!
4545
#TODO working raw_input
4646

47-
logging.basicConfig(level=logging.DEBUG, filename='repl.log', datefmt='%M:%S')
48-
4947
from bpython.keys import cli_key_dispatch as key_dispatch
5048

5149
class FakeStdin(object):

0 commit comments

Comments
 (0)