Skip to content

Commit 2ce063a

Browse files
committed
move min tornado outside translation block
1 parent e09ba05 commit 2ce063a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/serverapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
assert tornado.version_info >= MIN_TORNADO
5050
except (ImportError, AttributeError, AssertionError) as e: # pragma: no cover
5151
raise ImportError(
52-
_("The Jupyter Server requires tornado >=%s.%s.%s", *MIN_TORNADO)
52+
_("The Jupyter Server requires tornado >=%s.%s.%s") % MIN_TORNADO
5353
) from e
5454

5555
from tornado import httpserver

0 commit comments

Comments
 (0)