Merge pull request #970 from ailnlv/patch-1

Fixing https://github.com/web2py/web2py/issues/969
This commit is contained in:
mdipierro
2015-05-14 09:16:52 -05:00
+1 -3
View File
@@ -41,9 +41,7 @@ def enable_autocomplete_and_history(adir, env):
except ImportError:
pass
else:
readline.parse_and_bind("bind ^I rl_complete"
if sys.platform == 'darwin'
else "tab: complete")
readline.parse_and_bind("tab: complete")
history_file = os.path.join(adir, '.pythonhistory')
try:
readline.read_history_file(history_file)