Comment 6 for bug 1143297

Revision history for this message
MM (mmme) wrote :

Hi Andrew,

I don't recall if I showed you the Slackbuild page for Bleachbit, but here it is;

http://slackbuilds.org/repository/14.0/system/bleachbit/

Notice the contents of 'bleachbit.SlackBuild'?

All the Slackbuild script does is run this command; make install DESTDIR=$PKG prefix=/usr

This is the message from the terminal;

/usr/share/bleachbit/Unix.py:
45: ImportWarning: Not importing directory '/usr/share/gnome': missing __init__.py
    import gnome.vfs

This is your code Unix.py below at line 45;

HAVE_GNOME_VFS = True
try:
    import gnomevfs
except:
    try:
        # this is the deprecated name
        import gnome.vfs
    except:
        HAVE_GNOME_VFS = False
    else:
        gnomevfs = gnome.vfs

What does line 45 of Unix.py have to do with a Slackware package issue?

THANKS