Skip to content
Snippets Groups Projects
Commit 361a02fa authored by Marko Mecina's avatar Marko Mecina
Browse files

add absolute path info to slq schema files

parent f4a90d39
Branches
Tags
No related merge requests found
......@@ -12,8 +12,11 @@ import getpass
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
FNAME = 'scos2000db.json'
WBSQL = 'mk_scos2000_schema.wbsql'
sdir = os.path.dirname(os.path.abspath(__file__))
FNAME = os.path.join(sdir, 'scos2000db.json')
WBSQL = os.path.join(sdir, 'mk_scos2000_schema.wbsql')
ssd = json.load(open(FNAME, 'r'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment