diff options
Diffstat (limited to 'modules/admin-full')
-rw-r--r-- | modules/admin-full/luasrc/controller/admin/system.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/controller/admin/system.lua b/modules/admin-full/luasrc/controller/admin/system.lua index 39fe16a7f..56010ea9e 100644 --- a/modules/admin-full/luasrc/controller/admin/system.lua +++ b/modules/admin-full/luasrc/controller/admin/system.lua @@ -279,7 +279,7 @@ function action_upgrade() while true do local ln = fd:read("*l") if not ln then break end - luci.http.write(ln) + luci.http.write(ln .. "\n") end fd:close() end |