Skip to content

Commit

Permalink
Port from GObject to GLib
Browse files Browse the repository at this point in the history
Minor deprecation fix for Decorator @GObject.Property instead of @GObject.property
  • Loading branch information
srevinsaju authored and quozl committed Dec 23, 2019
1 parent 575443c commit 0a56cce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions collabwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def get_client_name(self):
'''
return CLIENT + '.' + self.activity.get_bundle_id()

@GObject.property
@GObject.Property
def leader(self):
'''
Boolean of if this client is the leader in this activity. The
Expand All @@ -401,7 +401,7 @@ def leader(self):
'''
return self._leader

@GObject.property
@GObject.Property
def owner(self):
'''
Ourselves, :class:`sugar3.presence.buddy.Owner`
Expand Down

0 comments on commit 0a56cce

Please sign in to comment.