possible bug?

Tim Roberts timr at probo.com
Thu Mar 24 02:16:59 EST 2005


Earl Eiland <eee at nmt.edu> 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, timr at probo.com
  Providenza & Boekelheide, Inc.



More information about the Python-list mailing list