##// 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 if missing_order:
864 if missing_order:
865 ui.develwarn(
865 ui.develwarn(
866 b'help categories missing from CATEGORY_ORDER: %s'
866 b'help categories missing from CATEGORY_ORDER: %s'
867 % missing_order
867 % stringutil.forcebytestr(missing_order)
868 )
868 )
869
869
870 # List per category.
870 # List per category.
@@ -897,7 +897,7 b' def help_('
897 if missing_order:
897 if missing_order:
898 ui.develwarn(
898 ui.develwarn(
899 b'help categories missing from TOPIC_CATEGORY_ORDER: %s'
899 b'help categories missing from TOPIC_CATEGORY_ORDER: %s'
900 % missing_order
900 % stringutil.forcebytestr(missing_order)
901 )
901 )
902
902
903 # Output topics per category.
903 # Output topics per category.
General Comments 0
You need to be logged in to leave comments. Login now