Comment 7 for bug 759635

Revision history for this message
Fabien Tassin (fta) wrote :

bug 660579 was different (a missing section in the prefs file), i fixed it.
Yours means the python hooks are unable to even locate your profile.

Could you please try this in a shell:

python /usr/share/apport/package-hooks/chromium-browser.py

(it should help see if the bug is in the hooks or deeper in apport).
if it fails:

echo $HOME
cd $HOME/.config/chromium/Default
ls -l Preferences

and if that works (maybe python can't figure out your HOME):

python

then..

>>> import os
>>> HOME = os.getenv("HOME")
>>> HOME

it should match the $HOME from above.