From cff85e01d207b0cac38366601c122c08937b054c Mon Sep 17 00:00:00 2001 From: flight16 Date: Tue, 9 Jun 2015 19:43:21 +0900 Subject: [PATCH] Make CommandEnum a new-style class. --- jrnl/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/cli.py b/jrnl/cli.py index 51748a8a..38c338cd 100644 --- a/jrnl/cli.py +++ b/jrnl/cli.py @@ -54,7 +54,7 @@ def parse_args(args=None): return parser.parse_args(args) -class CommandEnum: +class CommandEnum(object): READ = 1 COMPOSE_NEW_ENTRY = 2 EDIT_EXISTING_ENTRY = 3 # Existing entries with external editor