File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,6 @@ class LauncherEntry(Configurable):
63
63
""" ,
64
64
)
65
65
66
- @default ("path_info" )
67
- def _default_path_info (self ):
68
- return self .title + "/"
69
-
70
66
category = Unicode (
71
67
"Notebook" ,
72
68
help = """
@@ -179,13 +175,13 @@ class ServerProcess(Configurable):
179
175
180
176
@validate ("launcher_entry" )
181
177
def _validate_launcher_entry (self , proposal ):
182
- kwargs = {"title" : self .name }
178
+ kwargs = {"title" : self .name , "path_info" : self . name + "/" }
183
179
kwargs .update (proposal ["value" ])
184
180
return LauncherEntry (** kwargs )
185
181
186
182
@default ("launcher_entry" )
187
183
def _default_launcher_entry (self ):
188
- return LauncherEntry (title = self .name )
184
+ return LauncherEntry (title = self .name , path_info = self . name + "/" )
189
185
190
186
new_browser_tab = Bool (
191
187
True ,
You can’t perform that action at this time.
0 commit comments