Skip to content

Commit

Permalink
Merge pull request #21 from joseramonc/patch-1
Browse files Browse the repository at this point in the history
Fix and operator
  • Loading branch information
rscherf authored Oct 7, 2020
2 parents 6faa914 + 3a07f0d commit f0de892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitLink.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def run(self, edit, **args):
git_rev = self.getoutput("git rev-parse HEAD")

# Choose the view type we'll use
if('blame' in args && args['blame']):
if('blame' in args and args['blame']):
view_type = 'blame_url'
else:
view_type = 'url'
Expand Down

0 comments on commit f0de892

Please sign in to comment.