Skip to content

Commit

Permalink
Fixed wrong copyright year by modifying generate file . Fixes Issue s…
Browse files Browse the repository at this point in the history
…ympy#168

`utcnow()` function is now deprecated so it should be changed to `today()` function .
  • Loading branch information
abhiphile authored Jan 26, 2024
1 parent 24fbc64 commit 3f40d1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ for language in languages:
{
name + "_active": "active",
"static_path": STATIC_PATH,
"copyright_year": datetime.datetime.utcnow().year
"copyright_year": datetime.datetime.today().year
}
)
os.makedirs(os.path.join('build', language), exist_ok=True)
Expand Down

0 comments on commit 3f40d1c

Please sign in to comment.