Commit 5627d697 authored by Eric S. Raymond's avatar Eric S. Raymond

Import readline when possible to make the commaninterpreter UI nicer.

parent 9fedffe2
......@@ -531,6 +531,10 @@ def f8(x):
if __name__ == '__main__':
import cmd
try:
import readline
except:
pass
class ProfileBrowser(cmd.Cmd):
def __init__(self, profile=None):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment