mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-07-07 00:36:13 +02:00
fix failing encyption tests
This commit is contained in:
parent
d86bbaf861
commit
608f920d8f
1 changed files with 3 additions and 3 deletions
|
@ -175,9 +175,9 @@ def guess_mode(args, config):
|
|||
export = False
|
||||
import_ = True
|
||||
elif (
|
||||
args.decrypt
|
||||
or args.encrypt
|
||||
or args.export
|
||||
args.decrypt is not False
|
||||
or args.encrypt is not False
|
||||
or args.export is not False
|
||||
or any((args.short, args.tags, args.edit))
|
||||
):
|
||||
compose = False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue