Skip to content

Commit b26a8b2

Browse files
authored
Added timeout=timeout in wcsBase.py L 49, otherwise the timeout value was being re-written to the default of 30 seconds. (#914)
1 parent 71e64bd commit b26a8b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

owslib/coverage/wcsBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __new__(self, url, xml, cookies, auth=None, timeout=30, headers=None):
4646
@return: inititalised WCSBase object
4747
"""
4848
obj = object.__new__(self)
49-
obj.__init__(url, xml, cookies, auth=auth, headers=headers)
49+
obj.__init__(url, xml, cookies, timeout=timeout, auth=auth, headers=headers)
5050
self.cookies = cookies
5151
self.headers = headers
5252
self.timeout = timeout

0 commit comments

Comments
 (0)