Set boolean options default to False in becommands/list.py
authorW. Trevor King <wking@drexel.edu>
Sat, 5 Dec 2009 06:10:01 +0000 (01:10 -0500)
committerW. Trevor King <wking@drexel.edu>
Sat, 5 Dec 2009 06:10:01 +0000 (01:10 -0500)
commit49b8c7e7da7fa3a4f3c6092cf0bfdb1c1de863e8
tree8e65aad5f5e4c412fee492fecc35c903345625de
parent69300422c6825af80574545b11d7565aa8f38ee3
Set boolean options default to False in becommands/list.py

Otherwise they default to None.  It doesn't matter at the moment,
since all the comparisons seem to be
  if options.XYZ == True:
but this protects against confusion in the future if someone tries
  if options.XYZ == False:
becommands/list.py