Skip to content

Commit

Permalink
Merged kfsone/tradedangerous into master
Browse files Browse the repository at this point in the history
  • Loading branch information
maddavo committed Feb 27, 2015
2 parents 7a51ddc + 96032be commit 615d071
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commands/run_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,8 @@ def filterStationSet(src, cmdenv, stnList):
if not stnList:
return stnList
filtered = [
place for place in stnList if checkStationSuitability(cmdenv, place)
place for place in stnList
if isinstance(place, System) or checkStationSuitability(cmdenv, place)
]
if not stnList:
raise CommandLineError(
Expand Down

0 comments on commit 615d071

Please sign in to comment.