diff options
-rw-r--r-- | gsxws/__init__.py | 2 | ||||
-rw-r--r-- | gsxws/core.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gsxws/__init__.py b/gsxws/__init__.py index bbec77f..4e9559e 100644 --- a/gsxws/__init__.py +++ b/gsxws/__init__.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +name = 'gsxws' + from .core import * from .repairs import * from .products import * diff --git a/gsxws/core.py b/gsxws/core.py index 87f767b..8910927 100644 --- a/gsxws/core.py +++ b/gsxws/core.py @@ -39,7 +39,7 @@ import xml.etree.ElementTree as ET from . import objectify from datetime import date, time, datetime, timedelta -VERSION = "0.93" +VERSION = "0.94" GSX_ENV = "ut" # it, ut or pr GSX_LANG = "en" |