luci-app-adblock: Fix duplicated text
Added text "Input file not found. Please check your configuration." by
commit 9b4b1df
is duplicated. so I replaced the text with previously
existed.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
This commit is contained in:
parent
0145e9f307
commit
bc6e0c217f
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ local adbinput = uci.get("adblock", "blacklist", "adb_src" or "/etc/adblock/adbl
|
||||||
|
|
||||||
if not nixio.fs.access(adbinput) then
|
if not nixio.fs.access(adbinput) then
|
||||||
m = SimpleForm("error", nil,
|
m = SimpleForm("error", nil,
|
||||||
translate("Input file not found. Please check your configuration."))
|
translate("Input file not found, please check your configuration."))
|
||||||
m.reset = false
|
m.reset = false
|
||||||
m.submit = false
|
m.submit = false
|
||||||
return m
|
return m
|
||||||
|
|
Loading…
Reference in a new issue