Tom skrev: > newDirectory = str(sys.argv[1:])
Try
newDir = '/'.join(sys.argv[1:])
or
newDir = sys.argv[1]
or
for newDir in sys.argv[1:]:
:
or something along those lines, depending on how you wish to
interpret the commandline.
Cheers,
--
Klaus Alexander Seistrup
Copenhagen, Denmark
http://surdej.dk/
--
http://mail.python.org/mailman/listinfo/python-list
