Skip to content

Commit d1ebe07

Browse files
author
Coding With Shawn
committed
fixing typo
1 parent be66b25 commit d1ebe07

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

gitanalyzer/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "1.0.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def load_requirements(file_name):
1818

1919
# Fetching the version from the package's __init__.py
2020
def fetch_version():
21-
init_path = path.join(path.dirname(__file__), 'pydriller', '__init__.py')
21+
init_path = path.join(path.dirname(__file__), 'gitanalyzer', '__init__.py')
2222
with open(init_path) as file:
2323
for line in file:
2424
if line.startswith('__version__'):

0 commit comments

Comments
 (0)