From 07bde91c59deb7da56730a0d59754a15dbb2723d Mon Sep 17 00:00:00 2001 From: "Fabian P. Schmidt" Date: Tue, 12 Jan 2016 19:28:03 +0100 Subject: [PATCH] Add "NOT IMPLEMENTED" to show.receiver.list_all In fact, the command is correctly implemented but the receiver table is always empty. --- ogn/commands/showreceiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ogn/commands/showreceiver.py b/ogn/commands/showreceiver.py index 1cdb43e..ed378d5 100644 --- a/ogn/commands/showreceiver.py +++ b/ogn/commands/showreceiver.py @@ -13,7 +13,7 @@ receiver_beacons_per_day = 24 * 60 / 5 @manager.command def list_all(): - """Show a list of all receivers.""" + """Show a list of all receivers (NOT IMPLEMENTED).""" timestamp_24h_ago = datetime.utcnow() - timedelta(days=1)