openr/py/openr/cli/commands/fib.py [553:567]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        columns = [
            "SubscriberID",
            "Uptime",
            "Total Messages",
            "Time of Last Message",
        ]
        table = ""
        table = prettytable.PrettyTable(columns)
        table.set_style(prettytable.PLAIN_COLUMNS)
        table.align = "l"
        table.left_padding_width = 0
        table.right_padding_width = 2

        for subscriber in sorted(subscribers, key=lambda x: ip_key(x.subscriber_id)):
            table.add_row(self.get_subscriber_row(subscriber))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



openr/py/openr/cli/commands/kvstore.py [1468:1482]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        columns = [
            "SubscriberID",
            "Uptime",
            "Total Messages",
            "Time of Last Message",
        ]
        table = ""
        table = prettytable.PrettyTable(columns)
        table.set_style(prettytable.PLAIN_COLUMNS)
        table.align = "l"
        table.left_padding_width = 0
        table.right_padding_width = 2

        for subscriber in sorted(subscribers, key=lambda x: ip_key(x.subscriber_id)):
            table.add_row(self.get_subscriber_row(subscriber))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



