We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c23c16 commit 8e39b17Copy full SHA for 8e39b17
v7/import_page/import_page.py
@@ -61,7 +61,7 @@ def _execute(self, options, args):
61
self._import_page(url)
62
63
def _import_page(self, url):
64
- r = requests.get('http://en.wikipedia.org/wiki/Information_extraction')
+ r = requests.get(url)
65
if 199 < r.status_code < 300: # Got it
66
# Use the page's title
67
doc = lxml.html.fromstring(r.content)
0 commit comments