From 3a07f0d2de7ee03ee31c3cb5f97f81b063124776 Mon Sep 17 00:00:00 2001 From: Jose Ramon C Date: Wed, 7 Oct 2020 12:34:57 -0500 Subject: [PATCH] Fix and operator --- GitLink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitLink.py b/GitLink.py index 8ec5b68..638947b 100644 --- a/GitLink.py +++ b/GitLink.py @@ -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'