Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 235165 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +3 lines)
Line  Link Here
0
-- layman/action.py
0
++ layman/action.py
Lines 157-163 Link Here
157
        self.selection = config['add']
157
        self.selection = config['add']
158
158
159
        enc = sys.getfilesystemencoding()
159
        enc = sys.getfilesystemencoding()
160
        self.selection = [i.decode(enc) for i in self.selection]
160
        if enc:
161
            self.selection = [i.decode(enc) for i in self.selection]
161
162
162
        if 'ALL' in self.selection:
163
        if 'ALL' in self.selection:
163
            self.selection = self.rdb.overlays.keys()
164
            self.selection = self.rdb.overlays.keys()

Return to bug 235165