Show More
@@ -1334,8 +1334,8 b' def checkwinfilename(path):' | |||
|
1334 | 1334 | return _("filename contains '%s', which is reserved " |
|
1335 | 1335 | "on Windows") % c |
|
1336 | 1336 | if ord(c) <= 31: |
|
1337 |
return _("filename contains |
|
|
1338 | "on Windows") % c | |
|
1337 | return _("filename contains '%s', which is invalid " | |
|
1338 | "on Windows") % escapestr(c) | |
|
1339 | 1339 | base = n.split('.')[0] |
|
1340 | 1340 | if base and base.lower() in _winreservednames: |
|
1341 | 1341 | return _("filename contains '%s', which is reserved " |
General Comments 0
You need to be logged in to leave comments.
Login now