From bfd44ecae909e71b4cd9e3dc9de6b98d62e667d3 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 19 Oct 2019 15:19:56 +0200 Subject: [PATCH] Missing import in html and md export --- nw/convert/htmlfile.py | 1 + nw/convert/markdownfile.py | 1 + 2 files changed, 2 insertions(+) diff --git a/nw/convert/htmlfile.py b/nw/convert/htmlfile.py index bfaf4542..0b175e77 100644 --- a/nw/convert/htmlfile.py +++ b/nw/convert/htmlfile.py @@ -15,6 +15,7 @@ import nw from nw.convert.textfile import TextFile from nw.convert.tohtml import ToHtml +from nw.enum import nwAlert logger = logging.getLogger(__name__) diff --git a/nw/convert/markdownfile.py b/nw/convert/markdownfile.py index ff1ba8bc..0f490d1e 100644 --- a/nw/convert/markdownfile.py +++ b/nw/convert/markdownfile.py @@ -15,6 +15,7 @@ import nw from nw.convert.textfile import TextFile from nw.convert.tomarkdown import ToMarkdown +from nw.enum import nwAlert logger = logging.getLogger(__name__)