Skip to content

Commit e507a90

Browse files
committed
fix call
1 parent f2c9540 commit e507a90

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
@@ -104,7 +104,7 @@ def _urlopen(url, session=None):
104104
r = session.get(url)
105105
else:
106106
r = requests.get(url)
107-
r.raise_for_status
107+
r.raise_for_status()
108108
content = r.content
109109
except ImportError:
110110
r = urlopen(url)

0 commit comments

Comments
 (0)