mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
python: Import explicit including package name
To make python3 happy Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
parent
20018a0c09
commit
35042e0696
1 changed files with 4 additions and 4 deletions
|
@ -51,10 +51,10 @@ along with notmuch. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
|
||||
"""
|
||||
from database import Database, Query
|
||||
from message import Messages, Message
|
||||
from thread import Threads, Thread
|
||||
from tag import Tags
|
||||
from notmuch.database import Database, Query
|
||||
from notmuch.message import Messages, Message
|
||||
from notmuch.thread import Threads, Thread
|
||||
from notmuch.tag import Tags
|
||||
from notmuch.globals import nmlib, STATUS, NotmuchError
|
||||
__LICENSE__="GPL v3+"
|
||||
__VERSION__='0.2.2'
|
||||
|
|
Loading…
Reference in a new issue