FyreSpiryt opened this issue on Apr 17, 2010 · 8 posts
IsaoShi posted Sat, 17 April 2010 at 6:27 PM
The first screen is not an error, it's a printout of what the program is doing, for debugging purposes. To get rid of it you can comment out five print lines in the Python script "vssMainButtons.py", by putting a hash at the beginning of each line, as shown below:-
try:
scriptLocation = poser.ScriptLocation()
vssFolder = os.path.split(scriptLocation)[0]
except:
# print 'Cannot get vss script location properly - trying hack'
# print repr(sys.path[-1])
hackpath = sys.path[-1].replace('x0bss', 'vss').replace('t', 't')
# print repr(hackpath)
if os.path.exists(os.path.join(hackpath, 'vssui.py')):
# print 'OK hack =',hackpath
vssFolder = hackpath
else:
hackpath = os.path.join(hackpath, 'Python', 'vss')
if os.path.exists(os.path.join(hackpath, 'vssui.py')):
# print 'OK hack2 =',hackpath
vssFolder = hackpath
scriptLocation = os.path.join(hackpath, 'vssui.py')
del hackpath
Do this in a text editor program, making sure you do not alter the indentation of any lines.
This file is in the VSS folder.
Edit: looking at the real problem now....
"If I were a shadow, I know I wouldn't like to be half of
what I should be."
Mr Otsuka, the old black tomcat in Kafka on the Shore (Haruki
Murakami)