Fix case in version file path

This commit is contained in:
Sebastian Mäki 2024-02-19 23:55:47 +02:00
parent 435d4317e9
commit fcee2af5c7
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ BASEDIR = os.path.abspath(os.path.dirname(__file__))
def get_version():
""" Find the version of the package"""
version_file = os.path.join(BASEDIR, 'ovos_phal_plugin_discord_bot', 'version.py')
version_file = os.path.join(BASEDIR, 'ovos_PHAL_plugin_discord_bot', 'version.py')
major, minor, build, alpha = (None, None, None, None)
with open(version_file) as f:
for line in f: