mod_storage_sql: Log error when failing to update MySQL schema
[prosody.git] / plugins / mod_uptime.lua
index c3860af6535508ea58200bc06657f6a644fa6659..52b33c7489ea2cecda57624e9579a3ba97229706 100644 (file)
@@ -34,8 +34,8 @@ function uptime_text()
        local hours = t%24;
        t = (t - hours)/24;
        local days = t;
-       return string.format("This server has been running for %d day%s, %d hour%s and %d minute%s (since %s)", 
-               days, (days ~= 1 and "s") or "", hours, (hours ~= 1 and "s") or "", 
+       return string.format("This server has been running for %d day%s, %d hour%s and %d minute%s (since %s)",
+               days, (days ~= 1 and "s") or "", hours, (hours ~= 1 and "s") or "",
                minutes, (minutes ~= 1 and "s") or "", os.date("%c", prosody.start_time));
 end