Skip to content

Commit

Permalink
Merge branch 'hotfix-1.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkress committed Apr 3, 2016
2 parents 7e1582f + 3235c96 commit c399f12
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ include lib/GeoIP.dat
recursive-include conf *.conf
recursive-include doc *.md
include debian-startscript
exclude setup.py
exclude setup.cfg
exclude MANIFEST.in
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The code of Spunky Bot is inspired by the eb2k9 bot by Shawn Haggard, which was

[![Build Status](https://travis-ci.org/SpunkyBot/spunkybot.png?branch=master)](https://travis-ci.org/SpunkyBot/spunkybot)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/SpunkyBot/spunkybot/blob/master/LICENSE)
![Version](https://img.shields.io/badge/version-1.6.0-orange.svg)
![Version](https://img.shields.io/badge/version-1.6.1-orange.svg)
[![PyPI version](https://img.shields.io/pypi/v/spunkybot.svg)](https://pypi.python.org/pypi/spunkybot)
[![Code Health](https://landscape.io/github/SpunkyBot/spunkybot/master/landscape.svg)](https://landscape.io/github/SpunkyBot/spunkybot/master)

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

long_description = """Overview
========
Spunky Bot is a lightweight game server administration bot and RCON tool.
`Spunky Bot`_ is a lightweight game server administration bot and RCON tool.
Its purpose is to administer, manage and maintain an `Urban Terror`_ server and
to provide real time statistical data for players.
Expand Down Expand Up @@ -56,6 +56,7 @@
See the Homepage_ for usage and documentation or visit the Git Repository_
for the source code.
.. _Spunky Bot: http://spunkybot.de/
.. _Urban Terror: http://www.urbanterror.info/
.. _MIT: http://opensource.org/licenses/MIT
.. _Homepage: http://spunkybot.de/
Expand Down
4 changes: 2 additions & 2 deletions spunky.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
Run the bot: python spunky.py
"""

__version__ = '1.6.0'
__version__ = '1.6.1'


### IMPORTS
Expand Down Expand Up @@ -902,7 +902,7 @@ def handle_saytell(self, line):
"""
tmp = line.strip()
try:
new = "%s %s" % (tmp[0], ' '.join(tmp[2:]))
new = "%s%s" % (tmp[0], ''.join(tmp[1:]))
self.handle_say(new)
except IndexError:
pass
Expand Down

0 comments on commit c399f12

Please sign in to comment.