##// END OF EJS Templates
httppeer: use %s for formatting...
Gregory Szorc -
r41345:a9b609fb default
parent child Browse files
Show More
@@ -816,8 +816,8 b' class httpv2peer(object):'
816 return
816 return
817
817
818 raise error.CapabilityError(
818 raise error.CapabilityError(
819 _('cannot %s; client or remote repository does not support the %r '
819 _('cannot %s; client or remote repository does not support the '
820 'capability') % (purpose, name))
820 '\'%s\' capability') % (purpose, name))
821
821
822 # End of ipeercapabilities.
822 # End of ipeercapabilities.
823
823
@@ -346,8 +346,8 b' class peer(object):'
346 return
346 return
347
347
348 raise error.CapabilityError(
348 raise error.CapabilityError(
349 _('cannot %s; remote repository does not support the %r '
349 _('cannot %s; remote repository does not support the '
350 'capability') % (purpose, name))
350 '\'%s\' capability') % (purpose, name))
351
351
352 class iverifyproblem(interfaceutil.Interface):
352 class iverifyproblem(interfaceutil.Interface):
353 """Represents a problem with the integrity of the repository.
353 """Represents a problem with the integrity of the repository.
General Comments 0
You need to be logged in to leave comments. Login now