[github]: Remove error printing if exception caught
I experienced that when an exception is caught and we print it I get an ugly error on the whole bar making it unusable. This fixes that problem.
This commit is contained in:
parent
738a846853
commit
9b5477675c
1 changed files with 0 additions and 1 deletions
|
@ -83,7 +83,6 @@ class Module(core.module.Module):
|
||||||
self.__label += "/".join(counts)
|
self.__label += "/".join(counts)
|
||||||
|
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
print(err)
|
|
||||||
self.__label = "n/a"
|
self.__label = "n/a"
|
||||||
|
|
||||||
def __getUnreadNotificationsCountByReason(self, notifications, reason):
|
def __getUnreadNotificationsCountByReason(self, notifications, reason):
|
||||||
|
|
Loading…
Reference in a new issue