Skip to content

Commit

Permalink
flatpak-bisect: Remove unused variable
Browse files Browse the repository at this point in the history
This fixes a warning pointed out by lgtm.com. I checked that the following
still works:
$ PAGER=more flatpak-bisect -b stable org.gnome.Builder log

Closes: #2894
Approved by: matthiasclasen
  • Loading branch information
mwleeds authored and rh-atomic-bot committed May 16, 2019
1 parent b53f937 commit f9a4b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/flatpak-bisect
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class Bisector():
stdout = None
p = subprocess.Popen(cmd, stdout=stdout)
if pager:
ps = subprocess.check_call((pager), stdin=p.stdout)
subprocess.check_call((pager), stdin=p.stdout)
p.wait()

def checkout(self, commit=None):
Expand Down

0 comments on commit f9a4b44

Please sign in to comment.