Skip to content

Commit

Permalink
Always return last-modified date as string
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelger authored May 21, 2023
1 parent 6ea1ca0 commit 9e4f7c1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions gadi/gesetze_im_internet/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ def fetch_toc():

def _parse_last_modified_date_str(response):
last_modified_header = response.headers.get("Last-Modified")
if not last_modified_header:
if last_modified_header:
last_modified_date = parsedate_to_datetime(last_modified_header)
else:
# If there's no last modified date, pretend the file is current.
return dt.datetime.now()
last_modified_date = dt.datetime.now()

last_modified_date = parsedate_to_datetime(last_modified_header).strftime("%Y%m%d")
return last_modified_date
return last_modified_date.strftime("%Y%m%d")



Expand Down

326 comments on commit 9e4f7c1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6711e61e14d3e3424d3ca5f8--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://671334e04e54c12b54a59ac0--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67148aeba207c885ce2930e0--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6715d83257a13bd3f5387d93--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67172d29c3a49a4f1be6cd81--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67187ea0fb455c3181a57c38--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6719d047e416825d1a8a58e5--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://671b21d6c6e19ecf8cbe7e7c--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://671c7064f49ca53b9fac1047--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://671dd44b247306ede686fa05--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://671f1750ee621c699d337996--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://674fd84b262fa4cc34887743--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67512f7810f710a5299cdacc--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6752814ec072449f287dde10--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6753df0de257919c5cb162d7--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675526a2483dda122db1f981--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67567747d7d3f898e58bdbb0--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6757c67874e7f9966a9c886f--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675916d2bd82aef723cf475b--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675a694f259cd99ef42458da--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675bbb14cdc1457389050966--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675d0f7431599284a47b5416--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675e6ad133df64ff45634eac--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://675fb2c104a2ba9714327ddc--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676102e7703a28ff40b25260--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67625062f457ab71ad7e4ca5--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6763b0f6b16ae315675b780e--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6764f35f18bfa1d3c2e1d5f6--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676647a6d3b340acf3bb7e4c--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6767a3a606087737c177e57b--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6768eae4632143c93ca325d0--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676a38c3da0e8e323551fc1c--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676b8dd96c5eebbedd80ccde--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676ceb3d2c9c023d62aac53e--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676e3cd3c76666993c56d037--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://676f8dd593a902200f0f241f--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6770dfa9644e618be376d18d--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6772258763703bf8b00d20dc--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6773824fe4af28ba58a5b0d0--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6774c5e84e3074108be3317a--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://677616d0c3164c7aa9a04e11--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67776829e1dbb32fcec32a3f--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6778bcd2053c2b6a16d66ebc--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://677a0c4a8b2f6ae3dd527f39--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://677b680574af96869bd63bef--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://677cae2d4c89e579de6cbdf5--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://677dfec5381221ad48ab8ae0--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://677f54bc02de6e40682781e4--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6782036dae35f99265bdb966--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://67835575949e43a6b90be7cc--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://678497570979b54513c65eff--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6785eed94a88bc887646ada5--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6788903775f899f2803f2fc4--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6789e0c39c5477b6f8f88adc--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://678b2fbeeec712eb9f0e2a12--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://678c82d16223ca85f4233705--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://678dd1b01da0897d80e11dad--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://678f22c4e316c0c10c5ffed5--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://679078ce1bfff826f04882f6--gadi.netlify.app

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://gadi.netlify.app as production
πŸš€ Deployed on https://6791c8e1d5c5096d96e0a65b--gadi.netlify.app

Please sign in to comment.