stop tracking qutebrowser executable

This commit is contained in:
Felix Van der Jeugt 2020-10-16 10:28:21 +02:00
parent a52d62e3a4
commit 56c2f3f0ad
No known key found for this signature in database
GPG Key ID: 58B209295023754D
2 changed files with 1 additions and 12 deletions

View File

@ -27,6 +27,7 @@ unlit
vis vis
vis-* vis-*
wjt wjt
qutebrowser
# shouldn't share this one with the world # shouldn't share this one with the world
macaddress macaddress

View File

@ -1,12 +0,0 @@
#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==1.11.1','gui_scripts','qutebrowser'
__requires__ = 'qutebrowser==1.11.1'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('qutebrowser==1.11.1', 'gui_scripts', 'qutebrowser')()
)