Rex Dieter a56e318
#!/bin/sh
Rex Dieter a56e318
python3 -c "import PyKDE4" &> /dev/null
Rex Dieter a56e318
if [ $? -eq 0 ]; then
Rex Dieter a56e318
  exec python3 -m PyQt4.uic.pykdeuic4 ${1+"$@"}
Rex Dieter a56e318
else
Rex Dieter a56e318
  exec python2 -m PyQt4.uic.pykdeuic4 ${1+"$@"}
Rex Dieter a56e318
fi