>>> "UB" == Uwe Brauer <o...@mat.ucm.es> writes:

> Hi

> Artemis is a nice issue tracker https://www.mrzv.org/software/artemis/
> unfortunately abounded by its author. 

> Artemis relies on python 2.7 as far as I can see and Dan Villiom
> Podlaski Christiansen tried to port it to python 3 but not all feature
> work in that version.


It seems that for HG>5.2 

The following line causes troubles

        summaries.sort(lambda (s1,d1),(s2,d2): cmp(d2,d1))

Dan replaced it with
        summaries.sort(key=operator.itemgetter(1))

But then the command ilist does not display the necessary information as
indicated in the loop

        for s,d in summaries:
            ui.write(s + b'\n')


Any suggestion would be welcome.

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@lists.mercurial-scm.org
https://lists.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to