diff --git a/hoodselector/luasrc/usr/sbin/hoodselector b/hoodselector/luasrc/usr/sbin/hoodselector
index 4acd1fb016bdec766907bb0438014c5e05c139eb..9822ad9d2c1aa36a34792894fd6ddaab4fcf53c6 100755
--- a/hoodselector/luasrc/usr/sbin/hoodselector
+++ b/hoodselector/luasrc/usr/sbin/hoodselector
@@ -76,11 +76,12 @@ if arg[1] ~= nil then
       io.stderr:write("Hoodfile Path: " .. uci:get('hoodselector', 'hoodselector', 'hoodfile') .. "\n")
     end
   else
-    io.stderr:write("Hoodselector usage: \n\n")
-    io.stderr:write("hoodselector \t\t runs the Hoodselector\n")
-    io.stderr:write("hoodselector enable \t enable the Hoodselector\n")
-    io.stderr:write("hoodselector disable \t disable the Hoodselector\n")
-    io.stderr:write("hoodselector hoodfile \t shows the path of the Hoodfile\n")
+    io.stderr:write(
+           "Hoodselector usage: \n\n"
+        .. "hoodselector \t\t runs the Hoodselector\n"
+        .. "hoodselector enable \t enable the Hoodselector\n"
+        .. "hoodselector disable \t disable the Hoodselector\n"
+        .. "hoodselector hoodfile \t shows the path of the Hoodfile\n")
   end
   os.exit(0)
 end