##// END OF EJS Templates
help: fix a py3 error interpolating Set into b'%s'...
Matt Harbison -
r50536:f09bc2ed stable
parent child Browse files
Show More
@@ -864,7 +864,7 b' def help_('
864 864 if missing_order:
865 865 ui.develwarn(
866 866 b'help categories missing from CATEGORY_ORDER: %s'
867 % missing_order
867 % stringutil.forcebytestr(missing_order)
868 868 )
869 869
870 870 # List per category.
@@ -897,7 +897,7 b' def help_('
897 897 if missing_order:
898 898 ui.develwarn(
899 899 b'help categories missing from TOPIC_CATEGORY_ORDER: %s'
900 % missing_order
900 % stringutil.forcebytestr(missing_order)
901 901 )
902 902
903 903 # Output topics per category.
General Comments 0
You need to be logged in to leave comments. Login now