From: Jeremy Stanley Date: Sat, 16 Apr 2016 01:02:48 +0000 (+0000) Subject: Fix show element command for Py3K X-Git-Tag: 0.0.1~191 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=adc38982a3d0a1720febe55f1ee9a713f02c6fc2;hp=adc38982a3d0a1720febe55f1ee9a713f02c6fc2 Fix show element command for Py3K Under Python 3, the dict.keys() method returns a generator rather than a list and so cannot support the list.sort() method. Instead use the sorted() function for this purpose in the show element command. Also switch from concatenation to formatting to embed facets in the output since they may contain nontext values. ---