From 5d642ad6d6daa323147c220758055918b5e6a726 Mon Sep 17 00:00:00 2001 From: Uriziel Date: Mon, 24 Dec 2012 19:36:43 +0100 Subject: [PATCH] offset 0 is now valid time --- syncplay/ui/consoleUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/ui/consoleUI.py b/syncplay/ui/consoleUI.py index fea0353..2906f35 100644 --- a/syncplay/ui/consoleUI.py +++ b/syncplay/ui/consoleUI.py @@ -64,7 +64,7 @@ class ConsoleUI(threading.Thread): if(o): sign = self._extractRegexSign(o) t = utils.parseTime(o.group(2)) - if(not t): + if(t is None): return if(sign): t = self._syncplayClient.getUserOffset() + sign * t