/mandos/release

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

« back to all changes in this revision

Viewing changes to mandos-ctl

* mandos-ctl (print_clients): Bug fix: Don't show "Extended Timeout"
                              as milliseconds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
        if type(value) is dbus.Boolean:
117
117
            return "Yes" if value else "No"
118
118
        if keyword in ("Timeout", "Interval", "ApprovalDelay",
119
 
                       "ApprovalDuration"):
 
119
                       "ApprovalDuration", "ExtendedTimeout"):
120
120
            return milliseconds_to_string(value)
121
121
        return unicode(value)
122
122