Changeset 28726 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 26, 2010 7:25:54 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60599
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r28716 r28726 33 33 import time 34 34 import re 35 import platform 35 36 36 37 # Simple implementation of IConsoleCallback, one can use it as skeleton … … 214 215 215 216 def autoCompletion(commands, ctx): 216 import platform217 217 if not g_hasreadline: 218 218 return … … 2230 2230 home = getHomeFolder(ctx) 2231 2231 checkUserExtensions(ctx, commands, home) 2232 2232 if platform.system() == 'Windows': 2233 global g_hascolors 2234 g_hascolors = False 2233 2235 hist_file=os.path.join(home, ".vboxshellhistory") 2234 2236 autoCompletion(commands, ctx)
Note:
See TracChangeset
for help on using the changeset viewer.