Skip to content
  • intrigeri's avatar
    Fix off-by-one · cc6e4cb8
    intrigeri authored
    This:
    
      (todayDate.month + 1) % 12
    
    … returns a value in the 0..11 range, while here we use the datetime module,
    that expresses months as 1..12.
    cc6e4cb8