Queer European MD passionate about IT

9 Commits 5ce12c8835 ... 3cf0c06ba2

Author SHA1 Message Date
  Davte 3cf0c06ba2 Items in __all__ must be str, not module 3 years ago
  Davte 183d56ec51 Merge remote-tracking branch 'origin/develop' into develop 3 years ago
  Davte 64a927d4ac Merge pull request #1 from Davte/develop 3 years ago
  Davte 820933eac1 Typo. 3 years ago
  Davte da296d5b9a Catch Exceptions in web page requests. 4 years ago
  Davte b4c2df8173 Merge branch 'master' of ssh://gogs.davte.it:8445/Davte/ciclopibot 4 years ago
  Davte d2d796fe9c Check if service is active. 4 years ago
  Davte bb9e8b5cc8 Support module execution 4 years ago
  Davte 948325cb42 Helper module deprecated (use davtelepot.helper instead), typos and minor refactoring 4 years ago
1 changed files with 3 additions and 3 deletions
  1. 3 3
      ciclopibot/__init__.py

+ 3 - 3
ciclopibot/__init__.py

@@ -3,10 +3,10 @@
 __author__ = "Davide Testa"
 __email__ = "davide@davte.it"
 __license__ = "GNU General Public License v3.0"
-__version__ = "1.2.3"
+__version__ = "1.2.4"
 __maintainer__ = "Davide Testa"
 __contact__ = "t.me/davte"
 
-from . import ciclopi
+from . import ciclopi, messages
 
-__all__ = [ciclopi]
+__all__ = ['ciclopi', 'messages']