Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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]


Canonical link: https://commits.webkit.org/186992@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@214367 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
Lucas Forschler committed Mar 24, 2017
1 parent 3233af0 commit 43f415c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Expand Up @@ -56,7 +56,7 @@ def authenticate(self, username, password):
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):
Expand Down
11 changes: 11 additions & 0 deletions Tools/ChangeLog
@@ -1,3 +1,14 @@
2017-03-24 Lucas Forschler <lforschler@apple.com>

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 <svijayaraghavan@apple.com>

webkitpy: Parse JSON results from run-api-tests
Expand Down

0 comments on commit 43f415c

Please sign in to comment.