We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0205546 commit 1070647Copy full SHA for 1070647
1 file changed
pretext/utils.py
@@ -990,8 +990,8 @@ def check_for_updates() -> None:
990
log.info(f"You are using the latest version of pretext, {current_version}.\n")
991
# update the last check date
992
with open(last_check, "w") as f:
993
- f.write(str(datetime.date.today())+"\n")
994
- f.write(latest+"\n")
+ f.write(str(datetime.date.today()) + "\n")
+ f.write(latest + "\n")
995
996
997
def report_version() -> None:
0 commit comments