Skip to content

Commit

Permalink
EDSCUpdate fix for --random
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Feb 20, 2015
1 parent f0fc383 commit 8ebaa82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion edscupdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@

# Systems we know are bad.
ignore = [
"COL 285 SECTOR EC-R B18-5",
"DITIBTI (FIXED)",
"HYADES",
"HAREMID",
Expand Down Expand Up @@ -286,7 +287,7 @@ def main():
return

if argv.random:
random.sample(systems, 10)
systems = random.sample(systems, 10)

if argv.splash:
print(
Expand Down

0 comments on commit 8ebaa82

Please sign in to comment.