mirror of
https://git.code.sf.net/p/archivemail/code
synced 2024-12-21 23:32:54 +00:00
Default options.debug_imap to 0 again, not False
This was overdone when switching from integers to booleans. Here 0 and False are in fact probably equivalent, but it's still a bug.
This commit is contained in:
parent
a08cde18fb
commit
ad4c4b9642
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ class Options:
|
|||
script_name = os.path.basename(sys.argv[0])
|
||||
min_size = None
|
||||
verbose = False
|
||||
debug_imap = False
|
||||
debug_imap = 0
|
||||
warn_duplicates = False
|
||||
copy_old_mail = False
|
||||
archive_all = False
|
||||
|
|
Loading…
Reference in a new issue