Browse Source

[utils] Keep dot and dotdot unmodified (Closes #5171)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
2ebfeacabc
2 changed files with 6 additions and 1 deletions
  1. +5
    -0
      test/test_utils.py
  2. +1
    -1
      youtube_dl/utils.py

+ 5
- 0
test/test_utils.py View File

@ -163,6 +163,11 @@ class TestUtil(unittest.TestCase):
self.assertEqual(sanitize_path('abc.../def'), 'abc..#\\def')
self.assertEqual(sanitize_path('abc.../def...'), 'abc..#\\def..#')
self.assertEqual(sanitize_path('../abc'), '..\\abc')
self.assertEqual(sanitize_path('../../abc'), '..\\..\\abc')
self.assertEqual(sanitize_path('./abc'), 'abc')
self.assertEqual(sanitize_path('./../abc'), '..\\abc')
def test_ordered_set(self):
self.assertEqual(orderedSet([1, 1, 2, 3, 4, 4, 5, 6, 7, 3, 5]), [1, 2, 3, 4, 5, 6, 7])
self.assertEqual(orderedSet([]), [])


+ 1
- 1
youtube_dl/utils.py View File

@ -319,7 +319,7 @@ def sanitize_path(s):
if unc_or_drive:
norm_path.pop(0)
sanitized_path = [
re.sub('(?:[/<>:"\\|\\\\?\\*]|\.$)', '#', path_part)
path_part if path_part in ['.', '..'] else re.sub('(?:[/<>:"\\|\\\\?\\*]|\.$)', '#', path_part)
for path_part in norm_path]
if unc_or_drive:
sanitized_path.insert(0, unc_or_drive + os.path.sep)


Loading…
Cancel
Save