Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion jack.py
Original file line number Diff line number Diff line change
Expand Up @@ -1798,6 +1798,7 @@ def clear(self):
while self._portlist:
self._portlist[0].unregister()


class Status(object):

"""Representation of the JACK status bits."""
Expand All @@ -1810,7 +1811,7 @@ def __repr__(self):
if not name.startswith('_') and getattr(self, name))
if not flags:
flags = "no flags set"
return "<JACK status 0x{0:x}: {1}>".format(self._code, flags)
return "<jack.Status 0x{0:x}: {1}>".format(self._code, flags)

@property
def failure(self):
Expand Down