From a894624403334e803bfc0dd1c497d029c285bbbf Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 27 Jun 2017 14:48:33 -0400 Subject: [PATCH] Fix python 2.6 compatibility in log python 2.6 requires a numeric argument to {} --- confluent_server/confluent/log.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_server/confluent/log.py b/confluent_server/confluent/log.py index aa1f260b..bf468827 100644 --- a/confluent_server/confluent/log.py +++ b/confluent_server/confluent/log.py @@ -449,11 +449,11 @@ class TimedAndSizeRotatingFileHandler(BaseRotatingHandler): odtfn = dtfn append=1 while os.path.exists(dbfn): - dbfn = odbfn + '.{}'.format(append) + dbfn = odbfn + '.{0}'.format(append) append += 1 append=1 while os.path.exists(dtfn): - dtfn = odtfn + '.{}'.format(append) + dtfn = odtfn + '.{0}'.format(append) append += 1 if os.path.exists(self.binpath): os.rename(self.binpath, dbfn)