Changes between Initial Version and Version 1 of Ticket #17446, comment 1


Ignore:
Timestamp:
Dec 22, 2011, 11:22:35 AM (12 years ago)
Author:
Luke Plant

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17446, comment 1

    initial v1  
    11Python doesn't make any distinction between "a string" and 'a string', so this report has to be incorrect.
    22
    3 It is possible you have a ' character in your filename, in which case you'll need to escape it using a backslash.
     3It 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.
    44
    55Or 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/
Back to Top