Skip to content

Commit

Permalink
fix group [ll] traceback
Browse files Browse the repository at this point in the history
  • Loading branch information
nosarthur committed Jul 20, 2021
1 parent 041b545 commit 5568372
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gita/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def f_group(args: argparse.Namespace):
groups = utils.get_groups()
cmd = args.group_cmd or 'll'
if cmd == 'll':
if args.to_show:
if 'to_show' in args and args.to_show:
gname = args.to_show
print(' '.join(groups[gname]))
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setup(
name='gita',
packages=['gita'],
version='0.15.1',
version='0.15.2',
license='MIT',
description='Manage multiple git repos with sanity',
long_description=long_description,
Expand Down

0 comments on commit 5568372

Please sign in to comment.