Comment 8 for bug 801696

Revision history for this message
Tristan Hill (stan) wrote :

Maybe this has been spotted, but it looks like

        if not apt_btrfs.snapshots_supported:
            logging.debug("btrfs snapshots not supported")
            return

should be

        if not apt_btrfs.snapshots_supported():
            logging.debug("btrfs snapshots not supported")
            return

i.e. missing ()