Skip to content

Commit

Permalink
move min tornado outside translation block
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Nov 16, 2020
1 parent 8c6f0a7 commit c2038d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/serverapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
assert tornado.version_info >= MIN_TORNADO
except (ImportError, AttributeError, AssertionError) as e: # pragma: no cover
raise ImportError(
_("The Jupyter Server requires tornado >=%s.%s.%s", *MIN_TORNADO)
_("The Jupyter Server requires tornado >=%s.%s.%s") % MIN_TORNADO
) from e

from tornado import httpserver
Expand Down

0 comments on commit c2038d8

Please sign in to comment.