aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/filenames.py
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/python/notmuch/filenames.py')
-rw-r--r--bindings/python/notmuch/filenames.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bindings/python/notmuch/filenames.py b/bindings/python/notmuch/filenames.py
index 232a9eda..12050df9 100644
--- a/bindings/python/notmuch/filenames.py
+++ b/bindings/python/notmuch/filenames.py
@@ -19,12 +19,14 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
from ctypes import c_char_p
from notmuch.globals import (
nmlib,
- NullPointerError,
- NotInitializedError,
NotmuchMessageP,
NotmuchFilenamesP,
Python3StringMixIn,
)
+from .errors import (
+ NullPointerError,
+ NotInitializedError,
+)
class Filenames(Python3StringMixIn):