core/storagemanager.lua
changeset 7328 7baf1b14defb
parent 7247 8c6943918279
child 7330 d62f0471470f
child 7646 44fe2aaf817e
--- a/core/storagemanager.lua	Mon Jan 19 14:01:11 2015 -0500
+++ b/core/storagemanager.lua	Fri Apr 01 15:56:12 2016 +0200
@@ -196,7 +196,7 @@
 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