Title: [284491] trunk/Tools
Revision
284491
Author
jbed...@apple.com
Date
2021-10-19 13:36:29 -0700 (Tue, 19 Oct 2021)

Log Message

[webkitscmpy] Generate commit message template (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=231023
<rdar://problem/83722871>

Unreviewed follow-up fix.

* Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: MarkupSafe is imported as markupsafe.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (284490 => 284491)


--- trunk/Tools/ChangeLog	2021-10-19 20:34:23 UTC (rev 284490)
+++ trunk/Tools/ChangeLog	2021-10-19 20:36:29 UTC (rev 284491)
@@ -1,3 +1,13 @@
+2021-10-19  Jonathan Bedard  <jbed...@apple.com>
+
+        [webkitscmpy] Generate commit message template (Follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=231023
+        <rdar://problem/83722871>
+
+        Unreviewed follow-up fix.
+
+        * Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: MarkupSafe is imported as markupsafe.
+
 2021-10-14  Jonathan Bedard  <jbed...@apple.com>
 
         [webkitscmpy] Generate commit message template

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py (284490 => 284491)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py	2021-10-19 20:34:23 UTC (rev 284490)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py	2021-10-19 20:36:29 UTC (rev 284491)
@@ -53,7 +53,7 @@
 AutoInstall.register(Package('monotonic', Version(1, 5)))
 AutoInstall.register(Package('whichcraft', Version(0, 6, 1)))
 AutoInstall.register(Package('xmltodict', Version(0, 11, 0)))
-AutoInstall.register(Package('MarkupSafe', Version(1, 1, 1)))
+AutoInstall.register(Package('markupsafe', Version(1, 1, 1), pypi_name='MarkupSafe'))
 
 if sys.version_info < (3, 0):
     AutoInstall.register(Package('inspect2', Version(0, 1, 2)))
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to