Skip to content

Commit 3534e3c

Browse files
author
svn-role
committed
Merge r1886358 from trunk:
* r1886358 Python 3 compatibility: Update a raise statement probably missed in revision 873411 changes. Justification: Fix Python 3 compatibility Votes: +1: jamessan, dsahlberg git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/1.14.x@1927212 13f79535-47bb-0310-9956-ffa450edef68
1 parent 779fc0c commit 3534e3c

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

STATUS

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,3 @@ Veto-blocked changes:
2727

2828
Approved changes:
2929
=================
30-
31-
* r1886358
32-
Python 3 compatibility: Update a raise statement probably missed in
33-
revision 873411 changes.
34-
Justification:
35-
Fix Python 3 compatibility
36-
Votes:
37-
+1: jamessan, dsahlberg

tools/hook-scripts/svnperms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ def parse_groups(self, groupsiter):
137137
try:
138138
groupusers.extend(self._group[token[1:]])
139139
except KeyError:
140-
raise Error, "group '%s' not found" % token[1:]
140+
raise Error("group '%s' not found" % \
141+
token[1:])
141142
else:
142143
groupusers.append(token)
143144
self._group[option] = groupusers

0 commit comments

Comments
 (0)