From 04f815a24bdd29a50c09f0952f8221118274d555 Mon Sep 17 00:00:00 2001 From: Jim Paris Date: Sun, 4 Aug 2013 19:51:13 -0400 Subject: [PATCH] Reorder nilmtool commands --- nilmdb/cmdline/cmdline.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nilmdb/cmdline/cmdline.py b/nilmdb/cmdline/cmdline.py index 72338b8..7fe40ec 100644 --- a/nilmdb/cmdline/cmdline.py +++ b/nilmdb/cmdline/cmdline.py @@ -19,9 +19,8 @@ except ImportError: # pragma: no cover # Valid subcommands. Defined in separate files just to break # things up -- they're still called with Cmdline as self. -subcommands = [ "help", "info", "create", "list", "metadata", - "insert", "extract", "remove", "destroy", - "intervals", "rename" ] +subcommands = [ "help", "info", "create", "rename", "list", "intervals", + "metadata", "insert", "extract", "remove", "destroy" ] # Import the subcommand modules subcmd_mods = {}