Skip to content

Commit

Permalink
Fix only adding one star and adding blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Feb 22, 2015
1 parent 6cbfdf7 commit 6bf504e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion submit-distances.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ def get_standard_stars():
continue
if text.startswith('#'):
continue
testStars.add(text)
if text:
testStars.add(text)
except FileNotFoundError:
pass
if testStars:
Expand Down

0 comments on commit 6bf504e

Please sign in to comment.