##// END OF EJS Templates
exchange: eliminate some bytes.format() calls...
Matt Harbison -
r44208:27c6d6f5 default
parent child Browse files
Show More
@@ -2181,9 +2181,8 b' def applynarrowacl(repo, kwargs):'
2181 )
2181 )
2182 if not user_includes:
2182 if not user_includes:
2183 raise error.Abort(
2183 raise error.Abort(
2184 _(b"{} configuration for user {} is empty").format(
2184 _(b"%s configuration for user %s is empty")
2185 _NARROWACL_SECTION, username
2185 % (_NARROWACL_SECTION, username)
2186 )
2187 )
2186 )
2188
2187
2189 user_includes = [
2188 user_includes = [
@@ -2202,9 +2201,8 b' def applynarrowacl(repo, kwargs):'
2202
2201
2203 if invalid_includes:
2202 if invalid_includes:
2204 raise error.Abort(
2203 raise error.Abort(
2205 _(b"The following includes are not accessible for {}: {}").format(
2204 _(b"The following includes are not accessible for %s: %s")
2206 username, invalid_includes
2205 % (username, invalid_includes)
2207 )
2208 )
2206 )
2209
2207
2210 new_args = {}
2208 new_args = {}
General Comments 0
You need to be logged in to leave comments. Login now