summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pudeyev <code@olegp.name>2022-12-16 14:25:11 -0500
committerOleg Pudeyev <code@olegp.name>2022-12-16 14:25:22 -0500
commite02a1fda702717cc6d92fc7780328fcbc57dc101 (patch)
treeee57daecd79f85bd8e02ed5b13cceb8e5ffae0e0
parentbfabbf9795fa79db6fe5e9b375ad553061aa8917 (diff)
downloadpycurl-e02a1fda702717cc6d92fc7780328fcbc57dc101.tar.gz
Order authors case insensitively
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index f99e7ad..e450427 100644
--- a/setup.py
+++ b/setup.py
@@ -742,7 +742,7 @@ def check_authors():
author = author.replace('@', ' at ').replace('(', '<').replace(')', '>')
if author not in authors:
authors.append(author)
- authors.sort()
+ authors.sort(key=lambda s: s.lower())
paras[AUTHORS_PARAGRAPH] = "\n".join(authors)
f = open('AUTHORS', 'w')
try: