Description: Remove broken unicode
Author: Sascha Steinbiss <satta@debian.org>
Last-Update: 2025-02-08
--- a/keysign/gpgkey.py
+++ b/keysign/gpgkey.py
@@ -27,7 +27,6 @@
     """Takes a string and returns a valid utf8 encodable string
 
     Not every Python string is utf-8 encodable.
-    Take 'fo\\udcf6e\\udce9ba <foo@bma.d>' for example.
     This function replaces undecodable characters with a '?'
     """
     return s.encode('utf-8', errors=errors).decode('utf-8', errors=errors)
