Skip to content

Commit

Permalink
Bugfix for bin/hveto
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Urban committed Mar 12, 2019
1 parent a3444e6 commit 060b030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/hveto
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ if args.omega_scans:
omegatimes = list(map(str, sorted(numpy.unique(
[t['time'] for r in rounds for t in r.scans]))))
logger.debug("Collected %d times to omega scan" % len(omegatimes))
newtimes = [t for t in numpy.round(omegatimes, 2) if not
newtimes = [t for t in omegatimes if not
os.path.exists(os.path.join(omegadir, str(t)))]
logger.debug("%d scans already complete or in progress, %d remaining"
% (len(omegatimes) - len(newtimes), len(newtimes)))
Expand Down

0 comments on commit 060b030

Please sign in to comment.