Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.90 KB | None | 0 0
  1. import supybot
  2. import supybot.world as world
  3.  
  4. # Use this for the version of this plugin.  You may wish to put a CVS keyword
  5. # in here if you're keeping the plugin in CVS or some similar system.
  6. __version__ = "2.0"
  7.  
  8. __author__ = supybot.Author('Brandon Roberts', 'brand0', 'brandon@bxroberts.org')
  9.  
  10. # This is a dictionary mapping supybot.Author instances to lists of
  11. # contributions.
  12. __contributors__ = {}
  13.  
  14. # This is a url where the most recent plugin package can be downloaded.
  15. __url__ = 'https://github.com/brandonrobertz/academic-url-titles'
  16.  
  17. import config
  18. from importlib import reload
  19. import plugin
  20. reload(plugin) # In case we're being reloaded.
  21. # Add more reloads here if you add third-party modules and want them to be
  22. # reloaded when this plugin is reloaded.  Don't forget to import them as well!
  23.  
  24. if world.testing:
  25.     import test
  26.  
  27. Class = plugin.Class
  28. configure = config.configure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement