Skip to content

Commit 5086085

Browse files
committed
Fixed an issue with init script....
1 parent 101aef1 commit 5086085

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

gitmodules/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@
33
__credits__ = ['kuyaki']
44
__maintainer__ = 'kuyaki'
55
__date__ = '2020/10/02'
6-
__version__ = '0.0.2'
6+
__version__ = '0.0.3'
7+
8+
from gitmodules.gitmodules import extend_paths
9+
10+
11+
extend_paths()

gitmodules/gitmodules.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,3 @@ def extend_paths(cwd="."):
2020
if os.path.exists(git_module_path):
2121
sys.path.append(git_module_path)
2222
extend_paths(git_module_path)
23-
24-
25-
extend_paths()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
author=gitmodules.__author__,
1212
author_email='kuzma.yakimets@huawei.com',
1313
url='https://github.com/kuyaki/gitmodules',
14-
download_url='https://github.com/kuyaki/gitmodules/archive/v0.0.2.tar.gz',
14+
download_url='https://github.com/kuyaki/gitmodules/archive/v0.0.3.tar.gz',
1515
keywords=['git', 'submodules', 'submodule', 'module', 'gitmodules', 'gitmodule', 'python', 'import'],
1616
classifiers=[
1717
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"

0 commit comments

Comments
 (0)