3b0f80e19f
Both Archlinux and Fedora 29 have guidelines to point explicitly at /usr/bin/python2 where it expect python2. Also, do not use env. Fixes QubesOS/qubes-issues#4027
8 lines
119 B
Python
Executable File
8 lines
119 B
Python
Executable File
#!/usr/bin/python2
|
|
|
|
from qubesagent.xdg import launch
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
launch(*sys.argv[1:])
|