Comment 6 for bug 1181157

Revision history for this message
Thierry Carrez (ttx) wrote :

$ echo $HOME
/home/ttx
$ python -c 'import os; print os.path.expanduser("~")'
/home/ttx
$ HOME=/root python -c 'import os; print os.path.expanduser("~")'
/root
$ unset HOME
$ python -c 'import os; print os.path.expanduser("~")'
/home/ttx