diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-12-03 15:02:50 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-12-03 15:02:50 +0000 |
commit | b6d0efc79bd2604b84cde2605261d73399246cb7 (patch) | |
tree | 6b9cddd98968900495bc7f9a368ec22c8012f96a | |
parent | cf88b880cd19bd21161f6b3e8688fb752a96f64d (diff) | |
download | prosody-b6d0efc79bd2604b84cde2605261d73399246cb7.tar.gz prosody-b6d0efc79bd2604b84cde2605261d73399246cb7.zip |
mod_storage_sql: Whitespace fix (backported from trunk)
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index 7695e15d..172e569e 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -107,7 +107,7 @@ function keyval_store:get(username) module:log("error", "Unable to read from database %s store for %s: %s", store, username or "<host>", result); return nil, result; end - return result; + return result; end function keyval_store:set(username, data) user,store = username,self.store; |