Skip to content

Commit 420cd67

Browse files
committed
FIX: application.py syntax error caused by the previous commit
1 parent 22ef403 commit 420cd67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter_server/extension/application.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def _default_static_url_prefix(self):
230230
).tag(config=True)
231231

232232
template_paths = List(Unicode(),
233-
help=_i18n("""Paths to search for serving jinja templates.
233+
help="""Paths to search for serving jinja templates.
234234
235235
Can be used to override templates from notebook.templates.""")
236236
).tag(config=True)
@@ -247,7 +247,7 @@ def _config_file_name_default(self):
247247
"""The default config file name."""
248248
if not self.name:
249249
return ''
250-
return 'jupyter_{}_config'.format(self.name.replace('-','_'))
250+
return 'jupyter_{}_config'.format(self.name.replace('-', '_'))
251251

252252
def initialize_settings(self):
253253
"""Override this method to add handling of settings."""

0 commit comments

Comments
 (0)