The problem is in the following line in filediff.py: mime_type = gnomevfs.get_mime_type( os.path.abspath(fname) )
The path is not properly escaped before being passed to get_mime_type. You can just replace this line by the following: import urllib mime_type = gnomevfs.get_mime_type( urllib.quote(os.path.abspath(fname)) ) -- Meld syntax highlighting does not work https://bugs.launchpad.net/bugs/152913 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
