Skip to content

Commit

Permalink
Fix python syntax for py3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Jun 17, 2018
1 parent f2db5a6 commit 6a7a31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/scripts/pkg-py3-report.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

try:
org, repo = re.search(GIT_URL_RE, git_url).groups()
except AttributeError, ValueError:
except (AttributeError, ValueError):
msg = (
'\n\n\n'
'Error on trying to get info from the git URL %s'
Expand Down

0 comments on commit 6a7a31d

Please sign in to comment.