Fixes unicode formatting bug

Change-Id: I0c3551efab09724dee31855d4a3c88164f9888c9
This commit is contained in:
Obulpathi 2015-05-20 15:27:36 -04:00
parent 04bc361c70
commit de9dcf85a0
1 changed files with 1 additions and 1 deletions

View File

@ -250,6 +250,6 @@ class Openstack(plugins.Plugin):
if cls != self._cls:
self.stream.writeln(str(cls))
self._cls = cls
self.stream.write((' ' * 4 + str(name)).ljust(65))
self.stream.write(' {0}'.format(name).ljust(65))
self.stream.flush()
self.times[(cls, name)] = [time.time()]