File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -240,29 +240,29 @@ def actions_for_process(self, process):
240240 processname = urllib .quote (make_namespec (process .group .config .name ,
241241 process .config .name ))
242242 start = {
243- 'name' :'Start' ,
244- 'href' :'index.html?processname=%s&action=start' % processname ,
245- 'target' :None ,
243+ 'name' : 'Start' ,
244+ 'href' : 'index.html?processname=%s&action=start' % processname ,
245+ 'target' : None ,
246246 }
247247 restart = {
248- 'name' :'Restart' ,
249- 'href' :'index.html?processname=%s&action=restart' % processname ,
250- 'target' :None ,
248+ 'name' : 'Restart' ,
249+ 'href' : 'index.html?processname=%s&action=restart' % processname ,
250+ 'target' : None ,
251251 }
252252 stop = {
253- 'name' :'Stop' ,
254- 'href' :'index.html?processname=%s&action=stop' % processname ,
255- 'target' :None ,
253+ 'name' : 'Stop' ,
254+ 'href' : 'index.html?processname=%s&action=stop' % processname ,
255+ 'target' : None ,
256256 }
257257 clearlog = {
258- 'name' :'Clear Log' ,
259- 'href' :'index.html?processname=%s&action=clearlog' % processname ,
260- 'target' :None ,
258+ 'name' : 'Clear Log' ,
259+ 'href' : 'index.html?processname=%s&action=clearlog' % processname ,
260+ 'target' : None ,
261261 }
262262 tailf = {
263- 'name' :'Tail -f' ,
264- 'href' :'logtail/%s' % processname ,
265- 'target' :'_blank'
263+ 'name' : 'Tail -f' ,
264+ 'href' : 'logtail/%s' % processname ,
265+ 'target' : '_blank'
266266 }
267267 if state == ProcessStates .RUNNING :
268268 actions = [restart , stop , clearlog , tailf ]
You can’t perform that action at this time.
0 commit comments