Skip to content

Commit

Permalink
fix directionality of log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Bailey authored and Stephen Bailey committed Oct 8, 2024
1 parent 84f352d commit 6b185ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/desispec/specstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def update_specstatus(specstatus, tiles, update_only=False,
if col not in qacols:
if tiles[col][i] != specstatus[col][j]:
log.debug('Tile %d updating %s %s -> %s',
tileid, col, str(tiles[col][i]), str(specstatus[col][j]))
tileid, col, str(specstatus[col][j]), str(tiles[col][i]))
different = True
if not different and not clear_qa:
continue
Expand Down

0 comments on commit 6b185ae

Please sign in to comment.