From b27153fe9b9362a3f7f87b90225c26975ba18f1d Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Thu, 25 Oct 2018 09:36:26 +0200 Subject: [PATCH] Conform to changes in Flake8 v3.6 code style --- pelican/tools/pelican_quickstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/tools/pelican_quickstart.py b/pelican/tools/pelican_quickstart.py index 1c6cbce9..529eeb52 100755 --- a/pelican/tools/pelican_quickstart.py +++ b/pelican/tools/pelican_quickstart.py @@ -185,7 +185,7 @@ def ask(question, answer=str_compat, default=None, length=None): print('You must enter an integer') return r else: - raise NotImplemented( + raise NotImplementedError( 'Argument `answer` must be str_compat, bool, or integer')