From 834331a1c659efe3ff445b8dd5d3fe828ecc6e8d Mon Sep 17 00:00:00 2001 From: Robert Flack Date: Tue, 12 Apr 2022 20:23:36 +0000 Subject: [PATCH] Explicitly find and use python2. Quickopen currently requires python2, but modern systems no longer provide python2 as python. Adding this explicitly fixes invoking quickopen on modern debian releases when python2 is installed. --- quickopen | 2 +- quickopend | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quickopen b/quickopen index 70fd33f..0d09635 100755 --- a/quickopen +++ b/quickopen @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python2 # Copyright 2011 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/quickopend b/quickopend index f5260f4..11b3f88 100755 --- a/quickopend +++ b/quickopend @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Copyright 2011 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License");