Diff

core/storagemanager.lua @ 7325:7baf1b14defb

storagemanager: Capitalize log message
author Kim Alvefur <zash@zash.se>
date Fri, 01 Apr 2016 15:56:12 +0200
parent 7244:8c6943918279
child 7327:d62f0471470f
child 7643:44fe2aaf817e
line wrap: on
line diff
--- 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