Merge 0.10->trunk
[prosody.git] / core / storagemanager.lua
index 2d6d93f697004cac5b1061683c041a61ff598fd7..cadae0ed13aac80e518f5f3976ceb1d686694af8 100644 (file)
@@ -196,7 +196,7 @@ end
 function datamanager.users(host, datastore, typ)
        local driver = open(host, datastore, typ);
        if not driver.users then
-               return function() log("warn", "storage driver %s does not support listing users", driver.name) end
+               return function() log("warn", "Storage driver %s does not support listing users", driver.name) end
        end
        return driver:users();
 end