/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: 2019-12-04 23:46:59 UTC
  • Revision ID: teddy@recompile.se-20191204234659-m4u7bxnjrns6d3fc
Simplification of Python 3 compatibility code

Apply previously-made change in mandos and mandos-ctl also to
mandos-monitor.

* mandos-monitor: Set "__metaclass__ = type" globally for Python 2,
  and remove inheriting from "object" in all places possible.

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
    """