diff --git a/Contents/Code/__init__.py b/Contents/Code/__init__.py index c3554c6..c44b9fd 100644 --- a/Contents/Code/__init__.py +++ b/Contents/Code/__init__.py @@ -8,9 +8,9 @@ from search_tools import SearchTool from update_tools import UpdateTool from urls import SiteUrl -from _version import __version__ +from _version import version -VERSION_NO = __version__ +VERSION_NO = version # Starting value for score before deductions are taken. INITIAL_SCORE = 100 diff --git a/Contents/Code/_version.py b/Contents/Code/_version.py index 3dc1f76..9f7a875 100644 --- a/Contents/Code/_version.py +++ b/Contents/Code/_version.py @@ -1 +1 @@ -__version__ = "0.1.0" +version = "0.1.0"