Skip to content

Commit

Permalink
Fix for handling of system name in station command
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Smith committed Jan 6, 2015
1 parent a1cd7bd commit bb8d78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/station_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def checkSystemAndStation(tdb, cmdenv):

if cmdenv.system:
envSysName = ' '.join(cmdenv.system).upper()
if envSysName != sysName:
if sysName and envSysName != sysName:
raise CommandLineError(
"Mismatch between \"--system {}\" and "
"system name in station specifier "
Expand Down

0 comments on commit bb8d78b

Please sign in to comment.