Skip to content

Commit

Permalink
Fixed run command/via
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Feb 27, 2015
1 parent 9d7004b commit 96032be
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 96032be

Please sign in to comment.