Mercurial > libervia-backend
diff sat_frontends/bridge/bridge_frontend.py @ 2765:378188abe941
misc: replaced all "dummy" by the more conventional and readable "__" ("_" being used for gettext)
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 11 Jan 2019 11:13:15 +0100 |
parents | 56f94936df1e |
children | 003b8b4b56a7 |
line wrap: on
line diff
--- a/sat_frontends/bridge/bridge_frontend.py Fri Jan 11 10:18:02 2019 +0100 +++ b/sat_frontends/bridge/bridge_frontend.py Fri Jan 11 11:13:15 2019 +0100 @@ -32,7 +32,7 @@ self.fullname = unicode(name) self.message = unicode(message) self.condition = unicode(condition) if condition else "" - self.module, dummy, self.classname = unicode(self.fullname).rpartition(".") + self.module, __, self.classname = unicode(self.fullname).rpartition(".") def __str__(self): message = (": %s" % self.message) if self.message else ""