Le code que j'essaie d'exécuter :
from fabric.api import *
from fabric.contrib.files import *
def git():
with cd('/home/something'):
output = sudo('git log --pretty=oneline --no-color --abbrev-commit -n 1 HEAD')
print repr(output)
Exécuté avec fabric 0.9.something :
$ fab git
[localhost] Executing task 'git'
[localhost] sudo: git log --pretty=oneline --no-color --abbrev-commit -n 1 HEAD
Password for deploy@localhost:
[localhost] out: 67bec96 Merge branch 'master' of /home/something
"67bec96 Merge branch 'master' of /home/something"
Exécuté avec le tissu 1.2.2 :
$ fab git
[localhost] Executing task 'git'
[localhost] sudo: git log --pretty=oneline --no-color --abbrev-commit -n 1 HEAD
[localhost] Login password:
[localhost] out: sudo password:
[localhost] out: 67bec96 Merge branch 'master' of /home/something
[localhost] out:
"\x1b[?1h\x1b=\r67bec96 Merge branch 'master' of /home/something\x1b[m\r\n\r\x1b[K\x1b[?1l\x1b>"
Vous pouvez voir que la sortie du tissu 1.2.2 a quelques caractères d'échappement non désirés autour de la sortie réelle.
J'ai essayé d'utiliser sudo('... ').stdout, mais le résultat est le même.
Des idées ?