Skip to content

Commit 82171f0

Browse files
author
Kazuki Suzuki Przyborowski
committed
Small bug fix
1 parent 9faf947 commit 82171f0

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyWWW-Get"
3-
version = "2.1.4"
3+
version = "2.1.6"
44
readme = "README.md"
55
license = { text = "BSD-3-Clause" }
66
keywords = []

pywwwget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Copyright 2016-2023 Game Maker 2k - https://github.com/GameMaker2k
1313
Copyright 2016-2023 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1414
15-
$FileInfo: pywwwget.py - Last Update: 8/14/2025 Ver. 2.1.4 RC 1 - Author: cooldude2k $
15+
$FileInfo: pywwwget.py - Last Update: 8/14/2025 Ver. 2.1.6 RC 1 - Author: cooldude2k $
1616
'''
1717

1818
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -159,7 +159,7 @@
159159
__program_small_name__ = "wwwget"
160160
__project__ = __program_name__
161161
__project_url__ = "https://github.com/GameMaker2k/PyWWW-Get"
162-
__version_info__ = (2, 1, 4, "RC 1", 1)
162+
__version_info__ = (2, 1, 6, "RC 1", 1)
163163
__version_date_info__ = (2025, 8, 14, "RC 1", 1)
164164
__version_date__ = str(__version_date_info__[0])+"."+str(__version_date_info__[
165165
1]).zfill(2)+"."+str(__version_date_info__[2]).zfill(2)

pywwwgetmini.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2015-2024 Game Maker 2k - https://github.com/GameMaker2k
1414
Copyright 2015-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: pywwwget.py - Last Update: 8/14/2025 Ver. 2.1.4 RC 1 - Author: cooldude2k $
16+
$FileInfo: pywwwget.py - Last Update: 8/14/2025 Ver. 2.1.6 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -121,7 +121,7 @@
121121
__program_small_name__ = "wwwget"
122122
__project__ = __program_name__
123123
__project_url__ = "https://github.com/GameMaker2k/PyWWW-Get"
124-
__version_info__ = (2, 1, 4, "RC 1", 1)
124+
__version_info__ = (2, 1, 6, "RC 1", 1)
125125
__version_date_info__ = (2025, 8, 14, "RC 1", 1)
126126
__version_date__ = str(__version_date_info__[0])+"."+str(__version_date_info__[
127127
1]).zfill(2)+"."+str(__version_date_info__[2]).zfill(2)
@@ -326,7 +326,7 @@ def download_file_from_http_file(url, headers=None, usehttp=__use_http_lib__):
326326
if usehttp == 'requests' and haverequests:
327327
if username and password:
328328
response = requests.get(
329-
rebuilt_url, headers=headers, auth=(username, password), timeout=(5, 30)), stream=True
329+
rebuilt_url, headers=headers, auth=(username, password), timeout=(5, 30), stream=True
330330
)
331331
else:
332332
response = requests.get(rebuilt_url, headers=headers, timeout=(5, 30)), stream=True)

pywwwgetold.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Copyright 2016-2023 Game Maker 2k - https://github.com/GameMaker2k
1313
Copyright 2016-2023 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1414
15-
$FileInfo: pywwwgetold.py - Last Update: 8/14/2025 Ver. 2.1.4 RC 1 - Author: cooldude2k $
15+
$FileInfo: pywwwgetold.py - Last Update: 8/14/2025 Ver. 2.1.6 RC 1 - Author: cooldude2k $
1616
'''
1717

1818
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -159,7 +159,7 @@
159159
__program_small_name__ = "wwwget"
160160
__project__ = __program_name__
161161
__project_url__ = "https://github.com/GameMaker2k/PyWWW-Get"
162-
__version_info__ = (2, 1, 4, "RC 1", 1)
162+
__version_info__ = (2, 1, 6, "RC 1", 1)
163163
__version_date_info__ = (2025, 8, 14, "RC 1", 1)
164164
__version_date__ = str(__version_date_info__[0])+"."+str(__version_date_info__[
165165
1]).zfill(2)+"."+str(__version_date_info__[2]).zfill(2)

0 commit comments

Comments
 (0)