From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Wed, 22 Feb 2012 20:01:24 +0000 (+0100) Subject: python: avoid using a magic value for database mode in Database.__init__ X-Git-Tag: debian/0.12_rc1-1~55 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=92983dd14e3c9d767bb8ef6e9b85ef76b293cdd4 python: avoid using a magic value for database mode in Database.__init__ Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> --- diff --git a/bindings/python/notmuch/database.py b/bindings/python/notmuch/database.py index 504bb880..c905395e 100644 --- a/bindings/python/notmuch/database.py +++ b/bindings/python/notmuch/database.py @@ -122,7 +122,8 @@ class Database(object): _create.argtypes = [c_char_p] _create.restype = NotmuchDatabaseP - def __init__(self, path=None, create=False, mode=0): + def __init__(self, path = None, create = False, + mode = MODE.READ_ONLY): """If *path* is `None`, we will try to read a users notmuch configuration and use his configured database. The location of the configuration file can be specified through the environment variable