From fe1714a0bcd953f07864b78b54efacd96eccf16d Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 16 Jan 2015 11:05:04 +0200 Subject: [PATCH] common: fix v2.6 formatting issue --- amodem/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amodem/common.py b/amodem/common.py index 54e37a7..c9986eb 100644 --- a/amodem/common.py +++ b/amodem/common.py @@ -82,4 +82,4 @@ class AttributeHolder(object): def __repr__(self): items = sorted(self.__dict__.items()) args = ', '.join('{0}={1}'.format(k, v) for k, v in items) - return '{}({})'.format(self.__class__.__name__, args) + return '{0}({1})'.format(self.__class__.__name__, args)