From ec1d26f6d2a5940963d78f849c9ff90a9b583fc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=83=D0=BB=D1=8C=D0=B1=D0=B0?= <81091299+ulbwa@users.noreply.github.com> Date: Mon, 31 Jan 2022 20:24:59 +0500 Subject: [PATCH] 2022.01.31.1 --- MockupEngineer/templates/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MockupEngineer/templates/__init__.py b/MockupEngineer/templates/__init__.py index 353c0f4..afeaa4d 100644 --- a/MockupEngineer/templates/__init__.py +++ b/MockupEngineer/templates/__init__.py @@ -4,7 +4,7 @@ from dataclasses import dataclass, field from pathlib import Path from typing import List -templates_path = os.path.join("/".join(os.path.dirname(os.path.abspath(__file__)).split('/')[:-1]), 'templates') +templates_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'templates') def __list_all_templates(): diff --git a/setup.py b/setup.py index 28dfb74..012b4af 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='MockupEngineer', - version='2022.01.30.2', + version='2022.01.31.1', packages=find_packages(), url='https://github.com/ulbwazhine/MockupEngineer', license='MIT',