diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-09-22 18:29:29 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-09-22 18:29:29 +0200 |
commit | bf8387c265f2d01bf22104efe0c4d6f263a9d74a (patch) | |
tree | 262e1a6003c5325b0596a87a6299b2cfe0fae426 | |
parent | 83f658e9f9412108a45847961b2d82b4c4f0acaa (diff) |
-rwxr-xr-x | db | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,8 +43,8 @@ def get(date): ] -potential = get(datetime.now().strftime("%-y%m%d/%-H")) -potential += get((datetime.now() + timedelta(hours=1)).strftime("%-y%m%d/%-H")) +potential = get(datetime.now().strftime("%-y%m%d/%H")) +potential += get((datetime.now() + timedelta(hours=1)).strftime("%-y%m%d/%H")) potential = list( map( |