We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 240d5bc commit 2fdaa7fCopy full SHA for 2fdaa7f
1 file changed
ietf/meeting/models.py
@@ -34,7 +34,7 @@
34
from ietf.utils.models import ForeignKey
35
36
countries = list(pytz.country_names.items())
37
-countries.sort(lambda x,y: cmp(x[1], y[1]))
+countries.sort(key=lambda x: x[1])
38
39
timezones = []
40
for name in pytz.common_timezones:
0 commit comments