Show More
@@ -1384,10 +1384,10 b' class ibrowse(ipipe.Display):' | |||||
1384 | footery = 2 |
|
1384 | footery = 2 | |
1385 |
|
1385 | |||
1386 | keys = [] |
|
1386 | keys = [] | |
1387 |
for |
|
1387 | for cmd in ("quit", "help"): | |
1388 |
key = self.keymap.findkey( |
|
1388 | key = self.keymap.findkey(cmd, None) | |
1389 | if key is not None: |
|
1389 | if key is not None: | |
1390 |
keys.append("%s= |
|
1390 | keys.append("%s=%s" % (self.keylabel(key), cmd)) | |
1391 | helpmsg = " | %s" % " ".join(keys) |
|
1391 | helpmsg = " | %s" % " ".join(keys) | |
1392 |
|
1392 | |||
1393 | scr.clear() |
|
1393 | scr.clear() |
@@ -1,3 +1,8 b'' | |||||
|
1 | 2006-08-04 Walter Doerwald <walter@livinglogic.de> | |||
|
2 | ||||
|
3 | * IPython/Extensions/ibrowse.py: Fixed the help message in the footer | |||
|
4 | (which was displaying "quit" twice). | |||
|
5 | ||||
1 | 2006-07-28 Walter Doerwald <walter@livinglogic.de> |
|
6 | 2006-07-28 Walter Doerwald <walter@livinglogic.de> | |
2 |
|
7 | |||
3 | * IPython/Extensions/ipipe.py: Fix isort.__iter__() (was still using |
|
8 | * IPython/Extensions/ipipe.py: Fix isort.__iter__() (was still using |
General Comments 0
You need to be logged in to leave comments.
Login now