##// 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 816 return
817 817
818 818 raise error.CapabilityError(
819 _('cannot %s; client or remote repository does not support the %r '
820 'capability') % (purpose, name))
819 _('cannot %s; client or remote repository does not support the '
820 '\'%s\' capability') % (purpose, name))
821 821
822 822 # End of ipeercapabilities.
823 823
@@ -346,8 +346,8 b' class peer(object):'
346 346 return
347 347
348 348 raise error.CapabilityError(
349 _('cannot %s; remote repository does not support the %r '
350 'capability') % (purpose, name))
349 _('cannot %s; remote repository does not support the '
350 '\'%s\' capability') % (purpose, name))
351 351
352 352 class iverifyproblem(interfaceutil.Interface):
353 353 """Represents a problem with the integrity of the repository.
General Comments 0
You need to be logged in to leave comments. Login now