mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
python: Elide default for store_{true,false} argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Alex Vandiver
parent
d9431a5e66
commit
b4597a8ca8
@@ -17,7 +17,7 @@ logging.basicConfig(format="%(asctime)s restart-server: %(message)s",
|
||||
level=logging.INFO)
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--fill-cache', action='store_true', default=False,
|
||||
parser.add_argument('--fill-cache', action='store_true',
|
||||
help='Fill the memcached caches')
|
||||
args = parser.parse_args()
|
||||
|
||||
|
Reference in New Issue
Block a user