Comment 21 for bug 1241944

Revision history for this message
Favux (favux-is) wrote :

Oops! I got excited and didn't think that through.

Instead of the one line add these lines:

try:
    import appindicator # should only be available in Unity (and KDE?)
    have_appindicator = True
except:
    have_appindicator = False
print "have_appindicator", have_appindicator

Notice no idents on try and except or print. Other lines indented 4 spaces.