##// END OF EJS Templates
Fixed the help message in the footer (which was displaying "quit" twice).
walter.doerwald -
Show More
@@ -1384,10 +1384,10 b' class ibrowse(ipipe.Display):'
1384 1384 footery = 2
1385 1385
1386 1386 keys = []
1387 for key in ("quit", "help"):
1388 key = self.keymap.findkey(key, None)
1387 for cmd in ("quit", "help"):
1388 key = self.keymap.findkey(cmd, None)
1389 1389 if key is not None:
1390 keys.append("%s=quit" % self.keylabel(key))
1390 keys.append("%s=%s" % (self.keylabel(key), cmd))
1391 1391 helpmsg = " | %s" % " ".join(keys)
1392 1392
1393 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 6 2006-07-28 Walter Doerwald <walter@livinglogic.de>
2 7
3 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