summaryrefslogtreecommitdiff
path: root/examples/htmlStripper.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/htmlStripper.py')
-rw-r--r--examples/htmlStripper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/htmlStripper.py b/examples/htmlStripper.py
index 6fc4aef..c3dbcf1 100644
--- a/examples/htmlStripper.py
+++ b/examples/htmlStripper.py
@@ -16,7 +16,7 @@ scriptBody = scriptOpen + SkipTo(scriptClose) + scriptClose
commonHTMLEntity.setParseAction(replaceHTMLEntity)
# get some HTML
-targetURL = "http://wiki.python.org/moin/PythonDecoratorLibrary"
+targetURL = "https://wiki.python.org/moin/PythonDecoratorLibrary"
with closing(urllib.request.urlopen( targetURL )) as targetPage:
targetHTML = targetPage.read().decode("UTF-8")