mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-11-04 21:16:52 +00:00
Fix GitgExt.Message overrides
This commit is contained in:
parent
21fb208f8c
commit
fa8ebab10d
1 changed files with 2 additions and 2 deletions
|
@ -25,10 +25,10 @@ class MessageBus(GitgExt.MessageBus):
|
|||
MessageBus = override(MessageBus)
|
||||
__all__.append('MessageBus')
|
||||
|
||||
class Message(Gedit.Message):
|
||||
class Message(GitgExt.Message):
|
||||
def __getattribute__(self, name):
|
||||
try:
|
||||
return Gedit.Message.__getattribute__(self, name)
|
||||
return GitgExt.Message.__getattribute__(self, name)
|
||||
except:
|
||||
return getattr(self.props, name)
|
||||
|
||||
|
|
Loading…
Reference in a new issue