Title: [214367] trunk/Tools
Revision
214367
Author
[email protected]
Date
2017-03-24 12:41:38 -0700 (Fri, 24 Mar 2017)

Log Message

update committer_auth.py to be python 2.7 compliant
https://bugs.webkit.org/show_bug.cgi?id=170063

Reviewed by Alexey Proskuryakov.

* BuildSlaveSupport/build.webkit.org-config/committer_auth.py:
(CommitterAuth.authenticate):
    convert e.message to e.args[0]

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth.py (214366 => 214367)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth.py	2017-03-24 19:36:40 UTC (rev 214366)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth.py	2017-03-24 19:41:38 UTC (rev 214367)
@@ -56,7 +56,7 @@
         try:
             return self.is_webkit_committer(username) and self.is_webkit_trac_user(username, password)
         except Error, e:
-            self.err = e.message
+            self.err = e.args[0]
             return False
 
     def is_webkit_committer(self, username):

Modified: trunk/Tools/ChangeLog (214366 => 214367)


--- trunk/Tools/ChangeLog	2017-03-24 19:36:40 UTC (rev 214366)
+++ trunk/Tools/ChangeLog	2017-03-24 19:41:38 UTC (rev 214367)
@@ -1,3 +1,14 @@
+2017-03-24  Lucas Forschler  <[email protected]>
+
+        update committer_auth.py to be python 2.7 compliant
+        https://bugs.webkit.org/show_bug.cgi?id=170063
+        
+        Reviewed by Alexey Proskuryakov.
+
+        * BuildSlaveSupport/build.webkit.org-config/committer_auth.py:
+        (CommitterAuth.authenticate):
+            convert e.message to e.args[0]
+
 2017-03-24  Srinivasan Vijayaraghavan  <[email protected]>
 
         webkitpy: Parse JSON results from run-api-tests
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to