Skip to content

Commit

Permalink
Merge pull request #18 from azzahrajanetan/main
Browse files Browse the repository at this point in the history
Fix minutes left in error message
  • Loading branch information
mononokehime authored May 4, 2023
2 parents e69769d + a94fbd1 commit 910760f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def main():
# minutes buffer is how low the minutes should get before failing and raising an alarm
if remaining_minutes < int(raise_alarm_remaining_minutes):
raise RemainingMinutesThresholdError(
f'Your organisation is running short on minutes, you have {raise_alarm_remaining_minutes} left')
f'Your organisation is running short on minutes, you have {remaining_minutes} left')


if __name__ == "__main__":
Expand Down

0 comments on commit 910760f

Please sign in to comment.