Skip to content

Commit a634fde

Browse files
committed
fix call
1 parent 3716e3c commit a634fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def _urlopen(url, session=None):
105105
r = session.get(url)
106106
else:
107107
r = requests.get(url)
108-
r.raise_for_status
108+
r.raise_for_status()
109109
content = r.content
110110
except ImportError:
111111
r = urlopen(url)

0 commit comments

Comments
 (0)