Commit dcfd4e05 authored by ibuler's avatar ibuler

modify sudo cmd bug

parent 16622691
......@@ -482,7 +482,7 @@ def cmd_add(request):
if request.method == 'POST':
name = request.POST.get('name')
dept_id = request.POST.get('dept_id')
cmd = ','.join(request.POST.get('cmd').split())
cmd = ','.join(request.POST.get('cmd').split('\n'))
comment = request.POST.get('comment')
dept = DEPT.objects.filter(id=dept_id)
......@@ -512,7 +512,7 @@ def cmd_add_adm(request):
if request.method == 'POST':
name = request.POST.get('name')
cmd = ','.join(request.POST.get('cmd').split())
cmd = ','.join(request.POST.get('cmd').split('\n'))
comment = request.POST.get('comment')
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment