storagemanager: Capitalize log message
authorKim Alvefur <zash@zash.se>
Fri, 1 Apr 2016 13:56:12 +0000 (15:56 +0200)
committerKim Alvefur <zash@zash.se>
Fri, 1 Apr 2016 13:56:12 +0000 (15:56 +0200)
core/storagemanager.lua

index 680b65ad526753637d52c12c302452ffc125a919..8d83f677db81104b8690577a4d1cf8668baae72b 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