Skip to content

Commit bca063c

Browse files
committed
fix indent
1 parent 376a019 commit bca063c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ def get_authors():
8484
try:
8585
f = file(os.path.join(PACKAGE_ROOT, "AUTHORS"), "r")
8686
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"))
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"))
9292
f.close()
9393
authors.sort()
9494
except Exception, err:

0 commit comments

Comments
 (0)