Changes between Initial Version and Version 1 of Ticket #17446, comment 1
- Timestamp:
- Dec 22, 2011, 11:22:35 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17446, comment 1
initial v1 1 1 Python doesn't make any distinction between "a string" and 'a string', so this report has to be incorrect. 2 2 3 It is possible you have a ' character in your filename, in which case you'll need to escape it using a backslash .3 It is possible you have a ' character in your filename, in which case you'll need to escape it using a backslash, or use double quotes for delimiting the string. 4 4 5 5 Or possibly you are having problems with `'\'` in the path, which is the escape character, and so you need `"\\"`. Or you can use rawstrings, but beware the trailing backslash problem. http://pythonconquerstheuniverse.wordpress.com/2008/06/04/gotcha-%E2%80%94-backslashes-in-windows-filenames/