Skip to content

Commit

Permalink
fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarman committed Aug 19, 2016
1 parent 6204f80 commit c39edb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbapi/oldmodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def _attribute(self, attrname, default=None):
def __str__(self):
ret = '{0:s}.{1:s}:\n'.format(self.__class__.__module__, self.__class__.__name__)
if self.webui_link:
ret += "-> available via web UI at %s" % self.webui_link
ret += "-> available via web UI at %s\n" % self.webui_link

ret += u'\n'.join(['%-20s : %s' %
(a, getattr(self, a, "")) for a in self._stat_titles])
Expand Down

0 comments on commit c39edb4

Please sign in to comment.