From 9aa124b747efd85b9998d3e7b316542276707bd5 Mon Sep 17 00:00:00 2001 From: Christopher Harvey Date: Wed, 4 Aug 2010 22:13:33 -0400 Subject: Converted some python2 statements to python3. --- ventoo | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ventoo b/ventoo index 202ded8..c7bff1c 100755 --- a/ventoo +++ b/ventoo @@ -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. -- cgit v1.2.3-65-gdbad