Skip to content

Commit

Permalink
rettet til to års historik
Browse files Browse the repository at this point in the history
  • Loading branch information
kf-randers committed May 22, 2024
1 parent 40d6e3a commit 77ed44f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ def list_all_files():

def handle_files(files, connection):

# Finder relevante filer ud fra dato på seneste fil - går pt 1 år tilbage
# Finder relevante filer ud fra dato på seneste fil - går pt 2 år tilbage
senesteFil=files[-1]
dato=datetime.date(int(senesteFil[-14:-10]), int(senesteFil[-9:-7]), 1)
maxDato=dato-timedelta(days=1)
minDato=datetime.date(dato.year-1,(dato.month % 12) + 1, dato.day)
minDato=datetime.date(dato.year-2,(dato.month % 12) + 1, dato.day)

logger.info('-PERIODEAFGRÆNSNING---------------------------------')
logger.info(f'Første dag i måneden i seneste data: {dato}')
Expand Down

0 comments on commit 77ed44f

Please sign in to comment.