We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09ba05 commit 2ce063aCopy full SHA for 2ce063a
jupyter_server/serverapp.py
@@ -49,7 +49,7 @@
49
assert tornado.version_info >= MIN_TORNADO
50
except (ImportError, AttributeError, AssertionError) as e: # pragma: no cover
51
raise ImportError(
52
- _("The Jupyter Server requires tornado >=%s.%s.%s", *MIN_TORNADO)
+ _("The Jupyter Server requires tornado >=%s.%s.%s") % MIN_TORNADO
53
) from e
54
55
from tornado import httpserver
0 commit comments