mirror of
https://git.code.sf.net/p/archivemail/code
synced 2025-03-11 07:12:47 +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])
|
script_name = os.path.basename(sys.argv[0])
|
||||||
min_size = None
|
min_size = None
|
||||||
verbose = False
|
verbose = False
|
||||||
debug_imap = False
|
debug_imap = 0
|
||||||
warn_duplicates = False
|
warn_duplicates = False
|
||||||
copy_old_mail = False
|
copy_old_mail = False
|
||||||
archive_all = False
|
archive_all = False
|
||||||
|
|
Loading…
Add table
Reference in a new issue