From ca2668ef472a54b7b312555cff66b6caf98a6cf5 Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Tue, 5 Nov 2024 16:37:10 -0800 Subject: [PATCH] Fix typo that should have been fixed earlier --- sheetsync/sheetsync/sheets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sheetsync/sheetsync/sheets.py b/sheetsync/sheetsync/sheets.py index 46159e2..971bee6 100644 --- a/sheetsync/sheetsync/sheets.py +++ b/sheetsync/sheetsync/sheets.py @@ -314,7 +314,7 @@ class SheetsEventsMiddleware(SheetsMiddleware): return None if value.strip() == "--": return "--" if preserve_dash else None - bustime = common.shifts.parse_bustime(value) + bustime = common.parse_bustime(value) return common.bustime_to_dt(self.bustime_start, bustime) def encode_bustime(self, value):