##// END OF EJS Templates
commandserver: report capabilities sorted
Mads Kiilerich -
r18359:4b09e6f7 default
parent child Browse files
Show More
@@ -220,7 +220,7 b' class server(object):'
220 'getencoding' : getencoding}
220 'getencoding' : getencoding}
221
221
222 def serve(self):
222 def serve(self):
223 hellomsg = 'capabilities: ' + ' '.join(self.capabilities.keys())
223 hellomsg = 'capabilities: ' + ' '.join(sorted(self.capabilities))
224 hellomsg += '\n'
224 hellomsg += '\n'
225 hellomsg += 'encoding: ' + encoding.encoding
225 hellomsg += 'encoding: ' + encoding.encoding
226
226
General Comments 0
You need to be logged in to leave comments. Login now