diff --git a/CHANGES.rst b/CHANGES.rst index 0c5a034d0..2b9a7e081 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +**2015-12-21** + +*Released 3.1.1* + +- Fix a bug where asynchronous handlers could not have additional arguments +- Add ``groups`` and ``groupdict`` as additional arguments for regex-based handlers + **2015-12-16** *Released 3.1.0* diff --git a/docs/source/conf.py b/docs/source/conf.py index c750a5f7f..c8a16f1f1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ author = u'Leandro Toledo' # The short X.Y version. version = '3.1' # The full version, including alpha/beta/rc tags. -release = '3.1.0' +release = '3.1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/examples/echobot.py b/examples/echobot.py index 3f65441ac..3cfbb7e8a 100644 --- a/examples/echobot.py +++ b/examples/echobot.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # Simple Bot to reply to Telegram messages -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/examples/roboed.py b/examples/roboed.py index 93cd95178..127ff0dd7 100644 --- a/examples/roboed.py +++ b/examples/roboed.py @@ -2,7 +2,7 @@ # encoding: utf-8 # # RobĂ´ Ed Telegram Bot -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/examples/updater_bot.py b/examples/updater_bot.py index 66f1f631a..ad87503e0 100644 --- a/examples/updater_bot.py +++ b/examples/updater_bot.py @@ -1,4 +1,22 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Simple Bot to reply to Telegram messages +# Copyright (C) 2015 Leandro Toledo de Souza +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see [http://www.gnu.org/licenses/]. + """ This Bot uses the Updater class to handle the bot. diff --git a/examples/updater_simplebot.py b/examples/updater_simplebot.py index 150cba8ea..16144226f 100644 --- a/examples/updater_simplebot.py +++ b/examples/updater_simplebot.py @@ -1,4 +1,22 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Simple Bot to reply to Telegram messages +# Copyright (C) 2015 Leandro Toledo de Souza +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see [http://www.gnu.org/licenses/]. + """ This Bot uses the Updater class to handle the bot. diff --git a/setup.py b/setup.py index 007868239..38d7c54dd 100644 --- a/setup.py +++ b/setup.py @@ -26,9 +26,9 @@ def requirements(): setup( name='python-telegram-bot', - version='3.1.0', + version='3.1.1', author='Leandro Toledo', - author_email='leandrotoledodesouza@gmail.com', + author_email='devs@python-telegram-bot.org', license='LGPLv3', url='https://github.com/python-telegram-bot/python-telegram-bot', keywords='python telegram bot api wrapper', diff --git a/telegram/__init__.py b/telegram/__init__.py index 551c65bec..54bcd18a5 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by @@ -18,8 +18,8 @@ """A library that provides a Python interface to the Telegram Bot API""" -__author__ = 'leandrotoledodesouza@gmail.com' -__version__ = '3.1.0' +__author__ = 'devs@python-telegram-bot.org' +__version__ = '3.1.1' from .base import TelegramObject from .user import User diff --git a/telegram/audio.py b/telegram/audio.py index c7a669d34..33cb42c0a 100644 --- a/telegram/audio.py +++ b/telegram/audio.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/base.py b/telegram/base.py index ac0deac0f..20adcbdf0 100644 --- a/telegram/base.py +++ b/telegram/base.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/bot.py b/telegram/bot.py index 0330676d9..eee2c41c9 100644 --- a/telegram/bot.py +++ b/telegram/bot.py @@ -2,7 +2,7 @@ # pylint: disable=E0611,E0213,E1102,C0103,E1101,W0613,R0913,R0904 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/chat.py b/telegram/chat.py index 259d80d48..975c4b602 100644 --- a/telegram/chat.py +++ b/telegram/chat.py @@ -2,7 +2,7 @@ # pylint: disable=C0103,W0622 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/chataction.py b/telegram/chataction.py index fce7e4189..e08dc4047 100644 --- a/telegram/chataction.py +++ b/telegram/chataction.py @@ -2,7 +2,7 @@ # pylint: disable=R0903 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/contact.py b/telegram/contact.py index 3b9e2b104..9a5ba65c3 100644 --- a/telegram/contact.py +++ b/telegram/contact.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/dispatcher.py b/telegram/dispatcher.py index db8c65d76..432543516 100644 --- a/telegram/dispatcher.py +++ b/telegram/dispatcher.py @@ -1,4 +1,21 @@ #!/usr/bin/env python +# +# A library that provides a Python interface to the Telegram Bot API +# Copyright (C) 2015 Leandro Toledo de Souza +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser Public License for more details. +# +# You should have received a copy of the GNU Lesser Public License +# along with this program. If not, see [http://www.gnu.org/licenses/]. + """ This module contains the Dispatcher class. diff --git a/telegram/document.py b/telegram/document.py index d492774da..215828a8f 100644 --- a/telegram/document.py +++ b/telegram/document.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/emoji.py b/telegram/emoji.py index d8c1c2f2b..e58f319cb 100644 --- a/telegram/emoji.py +++ b/telegram/emoji.py @@ -3,7 +3,7 @@ # pylint: disable=C0103,C0301,R0903 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/error.py b/telegram/error.py index f8b7e21f2..fe557771b 100644 --- a/telegram/error.py +++ b/telegram/error.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/file.py b/telegram/file.py index 9474d2ffc..03142d987 100644 --- a/telegram/file.py +++ b/telegram/file.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/forcereply.py b/telegram/forcereply.py index 28057bee9..e1bdcbe78 100644 --- a/telegram/forcereply.py +++ b/telegram/forcereply.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/inputfile.py b/telegram/inputfile.py index 2921075f9..d8874ec95 100644 --- a/telegram/inputfile.py +++ b/telegram/inputfile.py @@ -2,7 +2,7 @@ # pylint: disable=W0622,E0611 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/location.py b/telegram/location.py index 66c28fc59..e04d0074f 100644 --- a/telegram/location.py +++ b/telegram/location.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/message.py b/telegram/message.py index bab213dca..d35de5430 100644 --- a/telegram/message.py +++ b/telegram/message.py @@ -2,7 +2,7 @@ # pylint: disable=R0902,R0912,R0913 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/nullhandler.py b/telegram/nullhandler.py index 50bd370eb..1316762a1 100644 --- a/telegram/nullhandler.py +++ b/telegram/nullhandler.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/parsemode.py b/telegram/parsemode.py index a56bc4307..2417a3f8c 100644 --- a/telegram/parsemode.py +++ b/telegram/parsemode.py @@ -2,7 +2,7 @@ # pylint: disable=R0903 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/photosize.py b/telegram/photosize.py index adc47649a..30b53540a 100644 --- a/telegram/photosize.py +++ b/telegram/photosize.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/replykeyboardhide.py b/telegram/replykeyboardhide.py index f2cb80bb7..5791b587d 100644 --- a/telegram/replykeyboardhide.py +++ b/telegram/replykeyboardhide.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/replykeyboardmarkup.py b/telegram/replykeyboardmarkup.py index 39912ea39..beee4478d 100644 --- a/telegram/replykeyboardmarkup.py +++ b/telegram/replykeyboardmarkup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/replymarkup.py b/telegram/replymarkup.py index 1d086c89b..461b38884 100644 --- a/telegram/replymarkup.py +++ b/telegram/replymarkup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/sticker.py b/telegram/sticker.py index 06089e358..831e70953 100644 --- a/telegram/sticker.py +++ b/telegram/sticker.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/update.py b/telegram/update.py index 3bccc7d20..fc8d15d6d 100644 --- a/telegram/update.py +++ b/telegram/update.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/updater.py b/telegram/updater.py index d57414f0f..88143eea0 100644 --- a/telegram/updater.py +++ b/telegram/updater.py @@ -1,4 +1,21 @@ #!/usr/bin/env python +# +# A library that provides a Python interface to the Telegram Bot API +# Copyright (C) 2015 Leandro Toledo de Souza +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser Public License for more details. +# +# You should have received a copy of the GNU Lesser Public License +# along with this program. If not, see [http://www.gnu.org/licenses/]. + """ This module contains the class Updater, which tries to make creating Telegram diff --git a/telegram/user.py b/telegram/user.py index 4fa88295a..55ff9e41c 100644 --- a/telegram/user.py +++ b/telegram/user.py @@ -2,7 +2,7 @@ # pylint: disable=C0103,W0622 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/userprofilephotos.py b/telegram/userprofilephotos.py index bce623b3b..16487b0e3 100644 --- a/telegram/userprofilephotos.py +++ b/telegram/userprofilephotos.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/utils/request.py b/telegram/utils/request.py index 430d98482..fb6b3e555 100644 --- a/telegram/utils/request.py +++ b/telegram/utils/request.py @@ -2,7 +2,7 @@ # pylint: disable=no-name-in-module,unused-import # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/video.py b/telegram/video.py index d69306337..0e5981caa 100644 --- a/telegram/video.py +++ b/telegram/video.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/voice.py b/telegram/voice.py index 53dcdc440..fda9fe8e7 100644 --- a/telegram/voice.py +++ b/telegram/voice.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/tests/base.py b/tests/base.py index 8dfeccb57..b63d7eefa 100644 --- a/tests/base.py +++ b/tests/base.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_audio.py b/tests/test_audio.py index 64e3f6a73..d6277cbcc 100644 --- a/tests/test_audio.py +++ b/tests/test_audio.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_bot.py b/tests/test_bot.py index 4cb2630aa..6ffc0ee56 100644 --- a/tests/test_bot.py +++ b/tests/test_bot.py @@ -2,7 +2,7 @@ # encoding: utf-8 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_chat.py b/tests/test_chat.py index 2e64389e9..a9eeea54f 100644 --- a/tests/test_chat.py +++ b/tests/test_chat.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_contact.py b/tests/test_contact.py index bf5e6a3a6..a0c24fb01 100644 --- a/tests/test_contact.py +++ b/tests/test_contact.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_document.py b/tests/test_document.py index 98711e768..79b7104ad 100644 --- a/tests/test_document.py +++ b/tests/test_document.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_emoji.py b/tests/test_emoji.py index 001b0d3e5..a90243e26 100644 --- a/tests/test_emoji.py +++ b/tests/test_emoji.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_file.py b/tests/test_file.py index 41016e66c..786d4f233 100644 --- a/tests/test_file.py +++ b/tests/test_file.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_location.py b/tests/test_location.py index c2dbf2fdb..3407f6ad2 100644 --- a/tests/test_location.py +++ b/tests/test_location.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_sticker.py b/tests/test_sticker.py index 27e349e4b..5b78f4762 100644 --- a/tests/test_sticker.py +++ b/tests/test_sticker.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_update.py b/tests/test_update.py index ec45692eb..ee6a4ecfe 100644 --- a/tests/test_update.py +++ b/tests/test_update.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_updater.py b/tests/test_updater.py index 8087cb46a..6adc7bd8b 100644 --- a/tests/test_updater.py +++ b/tests/test_updater.py @@ -2,7 +2,7 @@ # encoding: utf-8 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_user.py b/tests/test_user.py index 019c461fb..cedf5151f 100644 --- a/tests/test_user.py +++ b/tests/test_user.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_video.py b/tests/test_video.py index 654457e95..dcfdfa407 100644 --- a/tests/test_video.py +++ b/tests/test_video.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_voice.py b/tests/test_voice.py index d08d9c983..619121c41 100644 --- a/tests/test_voice.py +++ b/tests/test_voice.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015 Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by