/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-monitor

  • Committer: teddy at recompile
  • Date: 2020-03-21 16:23:36 UTC
  • Revision ID: teddy@recompile.se-20200321162336-3wdi81k9x65ffyav
Update Debian Policy version to 4.5.0; no other changes necessary.

* debian/control (Standards-Version): Change to "4.5.0".

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
import dbus
48
48
 
49
49
if sys.version_info.major == 2:
 
50
    __metaclass__ = type
50
51
    str = unicode
51
52
 
52
53
log = logging.getLogger(os.path.basename(sys.argv[0]))
88
89
                             int(fraction*1000000))  # Microseconds
89
90
 
90
91
 
91
 
class MandosClientPropertyCache(object):
 
92
class MandosClientPropertyCache:
92
93
    """This wraps a Mandos Client D-Bus proxy object, caches the
93
94
    properties and calls a hook function when any of them are
94
95
    changed.
406
407
        return ret
407
408
 
408
409
 
409
 
class UserInterface(object):
 
410
class UserInterface:
410
411
    """This is the entire user interface - the whole screen
411
412
    with boxes, lists of client widgets, etc.
412
413
    """