diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-08-03 20:59:05 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-08-03 20:59:05 (GMT) |
commit | 35b3535085fd610ce1389cf0e4fc07b5bc765dab (patch) | |
tree | c434ecb627a695b0957c4a3e54d1ba85ff349ac1 | |
parent | e9e65f40c50bb4130c7d6e7c981260126a7fa0a8 (diff) | |
download | swift-contrib-35b3535085fd610ce1389cf0e4fc07b5bc765dab.zip swift-contrib-35b3535085fd610ce1389cf0e4fc07b5bc765dab.tar.bz2 |
Better XEP format
-rw-r--r-- | Swiftob/scripts/xep.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiftob/scripts/xep.lua b/Swiftob/scripts/xep.lua index 0c7c943..c92e715 100644 --- a/Swiftob/scripts/xep.lua +++ b/Swiftob/scripts/xep.lua @@ -30,7 +30,7 @@ function update_xeps() end function xep_to_string(xep) - return "XEP-"..xep["number"]..": http://xmpp.org/extensions/xep-"..xep["number"]..".html\nShortname "..xep["shortname"]..": "..xep["name"]..xep["type"].."/"..xep["status"].." Updated: "..xep["updated"] + return "XEP-"..xep["number"].."("..xep["shortname"].."): http://xmpp.org/extensions/xep-"..xep["number"]..".html\n"..xep["name"]..xep["type"].."/"..xep["status"].." Updated: "..xep["updated"] end function xep_command(command, params, message) |