Index: /ValBot/Python/check_interwiki_links.py
===================================================================
--- /ValBot/Python/check_interwiki_links.py	(revision 1199)
+++ /ValBot/Python/check_interwiki_links.py	(revision 1200)
@@ -101,5 +101,5 @@
       if len(canonical_name) > 100:
          # Certain things can cause the trim to fail; report error and avoid slamming the output with massive page source from a failed trim
-         pywikibot.stdout('   ERROR: The {0} link "{1}" is a redirect to "{2}..." (string overflow).'.format(the_link.iw_prefix, the_link.page_slug, canonical_name[:100]))
+         pywikibot.stdout('   ERROR: The {0} link "{1}" is a redirect to "{2}…" (string overflow).'.format(the_link.iw_prefix, the_link.page_slug, canonical_name[:100]))
          errors_issued = errors_issued + 1
       else:
@@ -107,5 +107,5 @@
          if '#' in the_link.page_slug:
             the_link.page_name_only, _ = the_link.page_slug.split('#')
-            pywikibot.stdout('   The {0} link "{1}" is a redirect to "{2}", which is a valid page. Checking for section on that page....'.format(the_link.iw_prefix, the_link.page_name_only, the_link.page_name))
+            pywikibot.stdout('   The {0} link "{1}" is a redirect to "{2}", which is a valid page. Checking for section on that page….'.format(the_link.iw_prefix, the_link.page_name_only, the_link.page_name))
             find_section(the_link, True)
          else:
@@ -126,5 +126,5 @@
       # If linked page is in all caps, e.g. WP:BEANS, it's likely a deliberate use of a redirect
       if the_link.page_slug.startswith('WP:') and the_link.page_slug == the_link.page_slug.upper():
-         pywikibot.stdout('   Got redirection code "{0}" for {1} link "{2}". This appears to be a deliberate use of a Wikipedia shortcut. Checking the target page....'.format(the_link.curl_response.history[0], the_link.iw_prefix, the_link.page_slug))
+         pywikibot.stdout('   Got redirection code "{0}" for {1} link "{2}". This appears to be a deliberate use of a Wikipedia shortcut. Checking the target page….'.format(the_link.curl_response.history[0], the_link.iw_prefix, the_link.page_slug))
          find_canonical_link(the_link)
       else:
@@ -133,5 +133,5 @@
          page_slug_lower = the_link.page_slug.lower()
          if page_slug_lower.startswith(permalink1) or page_slug_lower.startswith(permalink2):
-            pywikibot.stdout('   Got redirection code "{0}" for {1} permanent revision link "{2}". Checking the target page....'.format(the_link.curl_response.history[0], the_link.iw_prefix, the_link.page_slug))
+            pywikibot.stdout('   Got redirection code "{0}" for {1} permanent revision link "{2}". Checking the target page….'.format(the_link.curl_response.history[0], the_link.iw_prefix, the_link.page_slug))
             find_canonical_link(the_link)
          else:
@@ -148,5 +148,5 @@
       unintended_redirects_found = unintended_redirects_found + 1
       possibly_print(the_link)
-      pywikibot.stdout('   WARNING: Got silently redirected by {0} link "{1}". Checking the target page....'.format(the_link.iw_prefix, the_link.page_slug))
+      pywikibot.stdout('   WARNING: Got silently redirected by {0} link "{1}". Checking the target page….'.format(the_link.iw_prefix, the_link.page_slug))
       find_canonical_link(the_link) # calls find_section() at end
    elif '#' in the_link.page_slug:
