On Wed, Feb 22, 2017 at 10:09 AM, john lunzer <[email protected]> wrote:
> I was just poking around and I was looking at a couple of my custom > commands and the keys are registered in the command dict as u'' (ie > unicode) while Leo's native commands are not unicode. > > My guess is that this could cause issues and the keys for custom commands > should be store the same as native commands. > ​Highly unlikely. Python string comparisons work as expected, on both 2 and 3. For example: assert 'abc' == u'abc' Edward -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/leo-editor. For more options, visit https://groups.google.com/d/optout.
