/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-02-08 14:01:38 UTC
  • Revision ID: teddy@recompile.se-20200208140138-h3ett0amdelfpt90
mandos: If possible, use shlex.quote() instead of re.escape()

* mandos: Make sure shlex.quote() exists (falling back to assigning
  re.escape to it).
  (Client.start_checker): Use shlex.quote() instead of re.escape().

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