aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-02-03 15:41:27 -0500
committerMike Frysinger <vapier@gentoo.org>2014-02-03 15:41:27 -0500
commitb1197c9964a7122477e94cf26a6f63b20f636d31 (patch)
tree0c3688dd4d317e3cb0409677d71c4516d82d0401 /pym/portage/emaint/modules/binhost/binhost.py
parent_do_global_updates: unify duplicated message header (diff)
downloadportage-b1197c9964a7122477e94cf26a6f63b20f636d31.tar.gz
portage-b1197c9964a7122477e94cf26a6f63b20f636d31.tar.bz2
portage-b1197c9964a7122477e94cf26a6f63b20f636d31.zip
various pylint clean ups
Hopefully should be no functional changes here.
Diffstat (limited to 'pym/portage/emaint/modules/binhost/binhost.py')
-rw-r--r--pym/portage/emaint/modules/binhost/binhost.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/portage/emaint/modules/binhost/binhost.py b/pym/portage/emaint/modules/binhost/binhost.py
index c297545cc..9bf11cb7d 100644
--- a/pym/portage/emaint/modules/binhost/binhost.py
+++ b/pym/portage/emaint/modules/binhost/binhost.py
@@ -9,7 +9,9 @@ from portage import os
from portage.util import writemsg
import sys
+
if sys.hexversion >= 0x3000000:
+ # pylint: disable=W0622
long = int
class BinhostHandler(object):