]> git.scottworley.com Git - pinch/blobdiff - pinch.py
Show channel fetch URL
[pinch] / pinch.py
index 18055dc9a00d9f2190e8b9ab101a8a16a27b66c6..130f69a8daeb86fc6521de878da3014075f8b16d 100644 (file)
--- 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()