Skip to content

Commit

Permalink
set default config dir name
Browse files Browse the repository at this point in the history
`default` is not a kwarg of the traitlet constructor (default_value is)

The result was a warning on every jupyter server startup that tag metadata was being stored,
but this is deprecated. The default value was *not* being set.
  • Loading branch information
minrk committed May 3, 2021
1 parent 5e77b73 commit 1c00e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/services/config/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ConfigManager(LoggingConfigurable):
"""Config Manager used for storing frontend config"""

config_dir_name = Unicode(
default="serverconfig",
"serverconfig",
help="""Name of the config directory."""
).tag(config=True)

Expand Down

0 comments on commit 1c00e8c

Please sign in to comment.