Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Fix doozer --version
Browse files Browse the repository at this point in the history
  • Loading branch information
locriandev committed Jun 23, 2022
1 parent cd7d273 commit 7bd2d17
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion doozerlib/__init__.py
@@ -1,3 +1,4 @@
import os
import sys
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 is not supported.')
Expand All @@ -9,4 +10,8 @@


def version():
return get_version()
return get_version(
root=os.path.abspath(
os.path.join(os.path.dirname(__file__), '..')
)
)

0 comments on commit 7bd2d17

Please sign in to comment.