Opened 18 years ago
Closed 18 years ago
#3883 closed defect (fixed)
mytharchive can not handle video files with back-ticks in their name
Reported by: | Owned by: | paulh | |
---|---|---|---|
Priority: | trivial | Milestone: | 0.21 |
Component: | mytharchive | Version: | head |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description
Hopefully the summary says it all - the fix is quite simple too:
Index: mytharchive/mythburn/scripts/mythburn.py =================================================================== --- mytharchive/mythburn/scripts/mythburn.py (revision 14309) +++ mytharchive/mythburn/scripts/mythburn.py (working copy) @@ -319,6 +319,7 @@
def quoteFilename(filename):
filename = filename.replace('"', '
"')
+ filename = filename.replace('', '\\
')
return '"%s"' % filename
#############################################################
Change History (3)
comment:1 Changed 18 years ago by
comment:2 Changed 18 years ago by
Milestone: | unknown → 0.21 |
---|
comment:3 Changed 18 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
(In [14311]) In MythArchive? fix some places where quotes and back-ticks weren't being escaped properly in filenames.
Closes #3883.
Oops, forgot this part of the patch: