diff options
-rwxr-xr-x | perc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -42,6 +42,9 @@ # 3.61: # - Fixed count output, was failing to count days before # +# 3.62: +# - Removed the weekend check for now, so it works at weekends +# import copy import decimal @@ -56,7 +59,7 @@ import math from datetime import datetime, date, timedelta, time PROG = "perc" -VERSION = "3.61" +VERSION = "3.62" CONFIG_FILE = "perc.cfg" CUSTOM_CONFIG_FILE = "custom_perc.cfg" |