Earl Eiland <[EMAIL PROTECTED]> wrote: >I'm running the following code on Windows 2000, 5.00.2195: > >for x in Files: > Command_String = 'C:\Program Files\WinRK\WinRK.exe -create ' +
That can't be right. You need either
Command_String = 'C:\\Program Files\\WinRK\\WinRK.exe -create ' +
or
Command_String = r'C:\Program Files\WinRK\WinRK.exe -create ' +
--
- Tim Roberts, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.
--
http://mail.python.org/mailman/listinfo/python-list
