We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376a019 commit bca063cCopy full SHA for bca063c
setup.py
@@ -84,11 +84,11 @@ def get_authors():
84
try:
85
f = file(os.path.join(PACKAGE_ROOT, "AUTHORS"), "r")
86
for line in f:
87
- if not line.strip().startswith("*"):
88
- continue
89
- if "--" in line:
90
- line = line.split("--", 1)[0]
91
- authors.append(line.strip(" *\r\n"))
+ if not line.strip().startswith("*"):
+ continue
+ if "--" in line:
+ line = line.split("--", 1)[0]
+ authors.append(line.strip(" *\r\n"))
92
f.close()
93
authors.sort()
94
except Exception, err:
0 commit comments