diff options
Diffstat (limited to 'net_monitor.py')
-rwxr-xr-x | net_monitor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net_monitor.py b/net_monitor.py index d4ce7c4..4129df4 100755 --- a/net_monitor.py +++ b/net_monitor.py @@ -206,8 +206,8 @@ class LoadGraph: if val == 0 and self.maxval != 0: val = self.maxval - self.__str_max = "%d %s" % (val, _("KB")) - self.__str_mid = "%d %s" % (val/2, _("KB")) + self.__str_max = "%d %s" % (val, _("Bytes")) + self.__str_mid = "%d %s" % (val/2, _("Bytes")) LoadGraph.padding["left"] = self.__context.text_extents(self.__str_max)[2] + 10 def __on_size(self, rect): |