Title: [275778] trunk/Tools
Revision
275778
Author
[email protected]
Date
2021-04-09 14:56:07 -0700 (Fri, 09 Apr 2021)

Log Message

git-webkit find doesn't work well with unicode characters in author name (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=223686

Reviewed by Jonathan Bedard.

* Scripts/libraries/webkitscmpy/webkitscmpy/program/find.py:
(Info.main): Updated the error message.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (275777 => 275778)


--- trunk/Tools/ChangeLog	2021-04-09 20:37:32 UTC (rev 275777)
+++ trunk/Tools/ChangeLog	2021-04-09 21:56:07 UTC (rev 275778)
@@ -1,3 +1,13 @@
+2021-04-09  Aakash Jain  <[email protected]>
+
+        git-webkit find doesn't work well with unicode characters in author name (follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=223686
+
+        Reviewed by Jonathan Bedard.
+
+        * Scripts/libraries/webkitscmpy/webkitscmpy/program/find.py:
+        (Info.main): Updated the error message.
+
 2021-04-09  Sam Sneddon  <[email protected]>
 
         Make TestInput take a Test object, not a path

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/find.py (275777 => 275778)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/find.py	2021-04-09 20:37:32 UTC (rev 275777)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/find.py	2021-04-09 21:56:07 UTC (rev 275778)
@@ -87,7 +87,7 @@
         try:
             print(u'Author: {}'.format(commit.author))
         except (UnicodeEncodeError, UnicodeDecodeError):
-            print('Author: ?')
+            print('Error: Unable to  print commit author name, please file a bug if seeing this locally.')
         print(datetime.fromtimestamp(commit.timestamp).strftime('Date: %a %b %d %H:%M:%S %Y'))
         if args.verbose > 0 or commit.revision:
             print('Revision: {}'.format(commit.revision or 'N/A'))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to