Fix case in version file path
This commit is contained in:
parent
435d4317e9
commit
fcee2af5c7
2
setup.py
2
setup.py
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue