[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:
Cristian Miranda 2020-08-20 10:47:56 -03:00
parent 738a846853
commit 9b5477675c

View file

@ -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):