(self)
| 1336 | # Try init the distro specific appindicator, |
| 1337 | # for example the Ubuntu MessagingMenu |
| 1338 | def indicatorInit(self): |
| 1339 | def _noop_update(*args, **kwargs): |
| 1340 | pass |
| 1341 | |
| 1342 | try: |
| 1343 | self.indicatorUpdate = get_plugin('indicator')(self) |
| 1344 | except (NameError, TypeError): |
| 1345 | logger.warning("No indicator plugin found") |
| 1346 | self.indicatorUpdate = _noop_update |
| 1347 | |
| 1348 | # initialise the message notifier |
| 1349 | def notifierInit(self): |