Comment 9 for bug 717750

Revision history for this message
Ray Carnes (rcarnes) wrote :

This bug exists in 6.1

The fix suggested by Jan B. Krejčí (janbkrejci) worked for me:

In abstractfs.py:

Line 275 is:

        p_parts = path.split("/") # hard-code the unix sep here, by spec.

Should be:

        p_parts = path.split(os.sep) # hard-code the unix sep here, by spec.

This fixed the problem for me on Windows 7 64-bit.