Fix paths that point to eve.db

This commit is contained in:
blitzmann
2015-10-05 12:33:07 -04:00
parent 11cf4b356c
commit 3f6c484c99
9 changed files with 13 additions and 13 deletions

View File

@@ -19,8 +19,8 @@ args = parser.parse_args()
script_dir = os.path.dirname(os.path.abspath(__file__))
db_path = os.path.abspath(os.path.join(script_dir, '..', 'staticdata', 'eve.db'))
icons_dir = os.path.abspath(os.path.join(script_dir, '..', 'staticdata', 'icons', 'ships'))
db_path = os.path.abspath(os.path.join(script_dir, '..', 'eve.db'))
icons_dir = os.path.abspath(os.path.join(script_dir, '..', 'imgs', 'renders'))
export_dir = os.path.abspath(os.path.expanduser(args.renders))