diff options
author | Christopher Harvey <chris@basementcode.com> | 2010-08-04 22:13:33 -0400 |
---|---|---|
committer | Christopher Harvey <chris@basementcode.com> | 2010-08-04 22:13:33 -0400 |
commit | 9aa124b747efd85b9998d3e7b316542276707bd5 (patch) | |
tree | 86a88417db2a5d96e51d9e8bbee72c0f69930d8d | |
parent | Fixed bug where stale input validation scripts weren't being reloaded. (diff) | |
download | ventoo-9aa124b747efd85b9998d3e7b316542276707bd5.tar.gz ventoo-9aa124b747efd85b9998d3e7b316542276707bd5.tar.bz2 ventoo-9aa124b747efd85b9998d3e7b316542276707bd5.zip |
Converted some python2 statements to python3.
-rwxr-xr-x | ventoo | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -15,15 +15,16 @@ sandboxDir = '/' if len(sys.argv) > 1: sandboxDir = sys.argv[1] if not osp.isdir(sandboxDir): - print sandboxDir + " is not a directory." + print(sandboxDir + " is not a directory.") sys.exit(0) -print 'Starting augeas...' +print('Starting augeas...') #None could be a 'loadpath' a = augeas.Augeas(sandboxDir, None, augeas.Augeas.SAVE_NEWFILE) -print 'Creating window...' +print('Creating window...') ventoo.main.sandboxDir = sandboxDir +sys.path.append("/tmp") #Note, it IS possible to create mutiple windows and augeas #instances to edit multiple "roots" at the same time. |