commit: e8ab33919dc2359da0b1922240d7a07de304596d
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 12 01:00:42 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Mon Oct 12 01:00:42 2015 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e8ab3391
stagebase: disable undefined-variable lint warning
raw_input doesn't exist w/py3, so pylint complains. Disable
the warning for this one line since we know it's fine.
catalyst/base/stagebase.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 438e4d3..8ea1dc4 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -28,7 +28,7 @@ from catalyst.base.resume import AutoResume
if sys.version_info[0] >= 3:
py_input = input
else:
- py_input = raw_input
+ py_input = raw_input # pylint: disable=undefined-variable
class StageBase(TargetBase, ClearBase, GenBase):