Browse Source

Correcting wrong year conversion

Andrej 2 years ago
parent
commit
7197c5d86f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pythonScripts/runSolver.py

+ 1 - 1
pythonScripts/runSolver.py

@@ -57,7 +57,7 @@ def convertUnit(tUnit):
    if tUnit=='month':
       return 24*60*30
    if tUnit=='year':
-      return 24*60*30*365
+      return 24*60*365
    return 1
 
 def getStrides(setup):