Merge pull request #88 from dmd/patch-1

eliminate redundant 'per'
pull/79/merge
Nicolas Hennion 2012-09-15 08:33:57 -07:00
commit 7417215d46
1 changed files with 4 additions and 4 deletions

View File

@ -1412,9 +1412,9 @@ class glancesScreen:
_("Network"), 8, self.title_color if _("Network"), 8, self.title_color if
self.hascolors else curses.A_UNDERLINE) self.hascolors else curses.A_UNDERLINE)
self.term_window.addnstr(self.network_y, self.network_x + 10, self.term_window.addnstr(self.network_y, self.network_x + 10,
_("Rx/ps"), 8) _("Rx/s"), 8)
self.term_window.addnstr(self.network_y, self.network_x + 19, self.term_window.addnstr(self.network_y, self.network_x + 19,
_("Tx/ps"), 8) _("Tx/s"), 8)
# If there is no data to display... # If there is no data to display...
if not network: if not network:
@ -1458,9 +1458,9 @@ class glancesScreen:
self.title_color if self.hascolors else self.title_color if self.hascolors else
curses.A_UNDERLINE) curses.A_UNDERLINE)
self.term_window.addnstr(self.diskio_y, self.diskio_x + 10, self.term_window.addnstr(self.diskio_y, self.diskio_x + 10,
_("In/ps"), 8) _("In/s"), 8)
self.term_window.addnstr(self.diskio_y, self.diskio_x + 19, self.term_window.addnstr(self.diskio_y, self.diskio_x + 19,
_("Out/ps"), 8) _("Out/s"), 8)
# If there is no data to display... # If there is no data to display...
if not diskio: if not diskio: