From 842e1939e7742fab09da14f9c51b7a5823532a2a Mon Sep 17 00:00:00 2001 From: Austin Scott <12504656+Austin-Scott@users.noreply.github.com> Date: Mon, 5 Nov 2018 14:03:57 -0600 Subject: [PATCH] Fixed typo --- jrnl/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/cli.py b/jrnl/cli.py index 5751b041..fce1b862 100644 --- a/jrnl/cli.py +++ b/jrnl/cli.py @@ -83,7 +83,7 @@ def encrypt(journal, filename=None): def decrypt(journal, filename=None): - """ Decrypts into new file. If filename is not set, we encrypt the journal file itself. """ + """ Decrypts into new file. If filename is not set, we decrypt the journal file itself. """ journal.config['encrypt'] = False journal.config['password'] = "" journal.write(filename)