Skip to content

Commit

Permalink
Swapped out git url parser (#45)
Browse files Browse the repository at this point in the history
The previous git url parser was not maintained.  Swapped out for a
basic git url parser maintained by @retr0h.
  • Loading branch information
retr0h committed Jul 25, 2017
1 parent ea4ea9a commit 673093d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gilt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _get_config_generator(filename):
for d in _get_config(filename):
repo = d['git']
parsedrepo = giturlparse.parse(repo)
name = '{}.{}'.format(parsedrepo.owner, parsedrepo.repo)
name = '{}.{}'.format(parsedrepo.owner, parsedrepo.name)
src_dir = os.path.join(_get_clone_dir(), name)
files = d.get('files')
post_commands = d.get('post_commands', [])
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
click
colorama
fasteners
giturlparse.py
git-url-parse
pbr
PyYAML
sh

0 comments on commit 673093d

Please sign in to comment.