diff options
author | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-21 10:35:01 +0200 |
---|---|---|
committer | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-21 10:35:01 +0200 |
commit | a27b575380378f1b490dcabb8cc67f05adee5daa (patch) | |
tree | f62f99169397b3779a5a9c2db4dca9beb0a86b56 /server.py | |
parent | c696db3e84d91092182adbeb7eef6126fad6be5d (diff) | |
download | yt-local-a27b575380378f1b490dcabb8cc67f05adee5daa.tar.lz yt-local-a27b575380378f1b490dcabb8cc67f05adee5daa.tar.xz yt-local-a27b575380378f1b490dcabb8cc67f05adee5daa.zip |
remove trailing whitespaces
Diffstat (limited to 'server.py')
-rw-r--r-- | server.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -66,7 +66,7 @@ def proxy_site(env, start_response, video=False): # such as 8192 lest that causes the socket library to limit the # TCP window size # Might need fine-tuning, since this gives us 4*65536 - # The tradeoff is that larger values (such as 6 seconds) only + # The tradeoff is that larger values (such as 6 seconds) only # allows video to buffer in those increments, meaning user must wait # until the entire chunk is downloaded before video starts playing content_part = response.read(32*8192) @@ -95,9 +95,9 @@ def split_url(url): match = re.match(r'(?:https?://)?([\w-]+(?:\.[\w-]+)+?)(/.*|$)', url) if match is None: raise ValueError('Invalid or unsupported url: ' + url) - + return match.group(1), match.group(2) - + def error_code(code, start_response): |