File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,11 @@ def main():
113
113
"--firefly_url" , help = "URL for Firefly server" , default = os .getenv ("FIREFLY_URL" )
114
114
)
115
115
parser .add_argument ("--channel" , help = "channel name for websocket" , default = None )
116
+ parser .add_argument (
117
+ "--html_file" ,
118
+ help = "Firefly landing page (default 'firefly.html')" ,
119
+ default = "firefly.html" ,
120
+ )
116
121
parser .add_argument (
117
122
"--printurl" ,
118
123
help = "print browser url instead of" + " attempting to launch browser" ,
@@ -129,11 +134,12 @@ def main():
129
134
recursion = not args .norecursion
130
135
sort = args .sort
131
136
path_prefix = args .path_prefix
137
+ html_file = args .html_file
132
138
133
139
fc = firefly_client .FireflyClient .make_client (
134
140
url = firefly_url ,
135
141
channel_override = channel ,
136
- html_file = "slate.html" ,
142
+ html_file = html_file ,
137
143
launch_browser = launch_browser ,
138
144
)
139
145
if printurl :
You can’t perform that action at this time.
0 commit comments