# HG changeset patch # User Kim Alvefur # Date 1480582946 -3600 # Node ID 274d0e57cc601efe5bea330b22b15e75a2d2c4d2 # Parent 19aa9b1ef9e8ba38fe4f3695f1452da709e580cd mod_storage_sql: List available commands if no commands given (currenly only one available) diff -r 19aa9b1ef9e8 -r 274d0e57cc60 plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Thu Dec 01 10:02:01 2016 +0100 +++ b/plugins/mod_storage_sql.lua Thu Dec 01 10:02:26 2016 +0100 @@ -507,6 +507,7 @@ elseif command then print("Unknown command: "..command); else - print("Unknown command: "..command); + print("Available commands:"); + print("","upgrade - Perform database upgrade"); end end