Skip to content

Commit 17e388b

Browse files
committed
Fix warning
1 parent 3fcee3b commit 17e388b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ def processor():
14291429
if not is_status_check_request:
14301430
body = request.body.read()
14311431

1432-
match = re.match('bytes (\d+)-(\d+)/(.+)', content_range_header)
1432+
match = re.match('bytes (\\d+)-(\\d+)/(.+)', content_range_header)
14331433
[range_start_s, range_end_s, file_size_s] = match.groups()
14341434

14351435
server_state.save_part(int(range_start_s), int(range_end_s), body, file_size_s)

0 commit comments

Comments
 (0)