From cdb6a61f0da4a67e58704ab1ccdb6e1d0877148a Mon Sep 17 00:00:00 2001 From: Evan Kaufman Date: Fri, 2 Dec 2016 00:49:48 -0800 Subject: Fix for python 2.4 compatibility (#5693) Fixes #5692 --- system/cron.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/system/cron.py b/system/cron.py index b747a8cf..34307c6b 100644 --- a/system/cron.py +++ b/system/cron.py @@ -727,8 +727,9 @@ def main(): changed = True # no changes to env/job, but existing crontab needs a terminating newline - if not changed and not crontab.existing.endswith(('\r', '\n')): - changed = True + if not changed: + if not (crontab.existing.endswith('\r') or crontab.existing.endswith('\n')): + changed = True res_args = dict( jobs = crontab.get_jobnames(), -- cgit v1.2.1