/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: 2019-03-13 22:21:45 UTC
  • Revision ID: teddy@recompile.se-20190313222145-2icvxn9caz7zcr0c
mandos-ctl: Refactor

* mandos-ctl (PrintTableCmd.TableOfClients.__init__): Remove unused
                                                      parameter
                                                      "tableheaders".

Show diffs side-by-side

added added

removed removed

Lines of Context:
636
636
            "LastCheckerStatus": "Last Checker Status",
637
637
        }
638
638
 
639
 
        def __init__(self, clients, keywords, tableheaders=None):
 
639
        def __init__(self, clients, keywords):
640
640
            self.clients = clients
641
641
            self.keywords = keywords
642
 
            if tableheaders is not None:
643
 
                self.tableheaders = tableheaders
644
642
 
645
643
        def __str__(self):
646
644
            return "\n".join(self.rows())