X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/38fcf16a6146a8dcd4944debed9b3e0260a0dcaf..b2bb38e6b9172072458ec1c8aed3e0b4c5f54a43:/pinch.py diff --git a/pinch.py b/pinch.py index 18055dc..130f69a 100644 --- a/pinch.py +++ b/pinch.py @@ -247,7 +247,7 @@ def compare(a: str, b: str) -> Tuple[List[str], List[str], List[str]]: def fetch_channel( v: Verification, channel: ChannelSearchPath) -> Tuple[str, str]: - v.status('Fetching channel') + v.status('Fetching channel from %s' % channel.channel_url) request = urllib.request.urlopen(channel.channel_url, timeout=10) channel_html = request.read().decode() forwarded_url = request.geturl()