Skip to content

Commit 8e39b17

Browse files
committedAug 23, 2015
doh
1 parent 9c23c16 commit 8e39b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎v7/import_page/import_page.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def _execute(self, options, args):
6161
self._import_page(url)
6262

6363
def _import_page(self, url):
64-
r = requests.get('http://en.wikipedia.org/wiki/Information_extraction')
64+
r = requests.get(url)
6565
if 199 < r.status_code < 300: # Got it
6666
# Use the page's title
6767
doc = lxml.html.fromstring(r.content)

0 commit comments

Comments
 (0)
Please sign in to comment.