Skip to content

Commit

Permalink
Fixed an issue with init script....
Browse files Browse the repository at this point in the history
  • Loading branch information
KuYaki committed Oct 5, 2020
1 parent 101aef1 commit 5086085
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
7 changes: 6 additions & 1 deletion gitmodules/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@
__credits__ = ['kuyaki']
__maintainer__ = 'kuyaki'
__date__ = '2020/10/02'
__version__ = '0.0.2'
__version__ = '0.0.3'

from gitmodules.gitmodules import extend_paths


extend_paths()
3 changes: 0 additions & 3 deletions gitmodules/gitmodules.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,3 @@ def extend_paths(cwd="."):
if os.path.exists(git_module_path):
sys.path.append(git_module_path)
extend_paths(git_module_path)


extend_paths()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
author=gitmodules.__author__,
author_email='[email protected]',
url='https://github.com/kuyaki/gitmodules',
download_url='https://github.com/kuyaki/gitmodules/archive/v0.0.2.tar.gz',
download_url='https://github.com/kuyaki/gitmodules/archive/v0.0.3.tar.gz',
keywords=['git', 'submodules', 'submodule', 'module', 'gitmodules', 'gitmodule', 'python', 'import'],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
Expand Down

0 comments on commit 5086085

Please sign in to comment.