/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-ctl

  • Committer: Teddy Hogeborn
  • Date: 2017-02-23 20:20:34 UTC
  • mfrom: (899 trunk)
  • mto: This revision was merged to the branch mainline in revision 900.
  • Revision ID: teddy@recompile.se-20170223202034-0820bcq0k7d1j9kf
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
import re
39
39
import os
40
40
import collections
 
41
import doctest
41
42
import json
42
43
 
43
44
import dbus
74
75
server_path = "/"
75
76
server_interface = domain + ".Mandos"
76
77
client_interface = domain + ".Mandos.Client"
77
 
version = "1.7.15"
 
78
version = "1.7.14"
78
79
 
79
80
 
80
81
try:
344
345
        parser.error("--all requires an action.")
345
346
 
346
347
    if options.check:
347
 
        import doctest
348
348
        fail_count, test_count = doctest.testmod()
349
349
        sys.exit(os.EX_OK if fail_count == 0 else 1)
350
350