From c0a76b2929612877397720cabc8699e24cd74687 Mon Sep 17 00:00:00 2001 From: Austin Scott <12504656+Austin-Scott@users.noreply.github.com> Date: Thu, 8 Nov 2018 12:13:51 -0600 Subject: [PATCH] Fixed typo (#563) --- 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)