Commit 7f0643f9 authored by Ivan Shapovalov's avatar Ivan Shapovalov Committed by Pavel Emelyanov

treewide: specify 'python2' instead of 'python' in shebangs of python scripts

Signed-off-by: 's avatarIvan Shapovalov <intelfx@intelfx.name>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 56d563e9
#!/bin/env python
#!/bin/env python2
import pycriu
import sys
......
......@@ -20,7 +20,7 @@ for i in `cat /proc/self/mounts | awk '{ print $2 }'`; do
umount -l $i
done
python mounts.py
python2 mounts.py
kill $INMNTNS_PID
while :; do
sleep 10
......
#!/usr/bin/python
#!/usr/bin/python2
# Test criu errno
import socket, os, imp, sys, errno
......
#!/usr/bin/python
#!/usr/bin/python2
import socket, os, imp, sys, errno
import rpc_pb2 as rpc
......
#!/usr/bin/python
#!/usr/bin/python2
import socket, os, imp, sys
import rpc_pb2 as rpc
......
#!/usr/bin/python
#!/usr/bin/python2
import socket, os, imp, sys
import rpc_pb2 as rpc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment