Swapped arguments

This commit is contained in:
Kovid Goyal 2017-03-28 21:02:25 +05:30
parent 19e38b6aa6
commit db8a4190d5

View File

@ -73,7 +73,7 @@ class CoverManager(object):
style = 'style="height: 100%%"' style = 'style="height: 100%%"'
else: else:
width, height = fixed_size width, height = fixed_size
style = 'style="height: %s; width: %s"'%(width, height) style = 'style="height: %s; width: %s"'%(height, width)
self.non_svg_template = self.NONSVG_TEMPLATE.replace('__style__', self.non_svg_template = self.NONSVG_TEMPLATE.replace('__style__',
style) style)