Add plugin hook to __init__

This paves the way for a plugin providing a Python API
1.4
IceArmy 2011-09-17 22:35:19 -07:00
parent 3204616b30
commit c039a34068
1 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,14 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
__all__ = ['__version_info__', '__version__']
from plugincontroller import do_action
__version_info__ = (1, 3, 0, 'dev')
__version__ = '.'.join(map(str, __version_info__))
do_action('__init__')