From 0087b092c2871314b219c339acded6665e99efc4 Mon Sep 17 00:00:00 2001 From: Matthew Vernon Date: Tue, 22 Jun 2021 12:03:09 +0100 Subject: [PATCH] correct a comment ...it's "loop" that is false to stop looping, not "login". --- gooswapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gooswapper.py b/gooswapper.py index a9da368..b212e6a 100644 --- a/gooswapper.py +++ b/gooswapper.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (C) 2018 Genome Research Limited +# Copyright (C) 2018,2021 Genome Research Limited # # Author: Matthew Vernon # @@ -473,7 +473,7 @@ def main(): gcal_account = gcal_login(args) gcal_tz = get_gcal_timezone(gcal_account,gcal_id) - #Main loop (broken at the end if login is false) + #Main loop (broken at the end if loop is false) while True: try: with open(cachepath,"rb") as f: -- 2.30.2