Skip to content

Commit

Permalink
Fix integer get first from end point
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsutherland committed Aug 16, 2019
1 parent eeaa008 commit e806040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cylc/flow/cycling/integer.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def get_first_point(self, point):
point = self._get_point_in_bounds(point)
else:
point = self.get_next_point(point)
if self.exclusions and point in self.exclusions:
if self.exclusions and point and point in self.exclusions:
return self.get_next_point_on_sequence(point)
return point

Expand Down

0 comments on commit e806040

Please sign in to comment.