From a828ef4cb5ee60e448a95bb746a55fb476b1c575 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 28 Oct 2011 17:12:11 -0700 Subject: Use bytes instead of unicode with isinstance. This is preferred since the bytes type is available in all supported python versions, while the unicode type is only available in python2. --- bin/xpak-helper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/xpak-helper.py') diff --git a/bin/xpak-helper.py b/bin/xpak-helper.py index 4766d990d..ef74920db 100755 --- a/bin/xpak-helper.py +++ b/bin/xpak-helper.py @@ -1,5 +1,5 @@ #!/usr/bin/python -# Copyright 2009 Gentoo Foundation +# Copyright 2009-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 import optparse @@ -36,7 +36,7 @@ def command_recompose(args): def main(argv): - if argv and sys.hexversion < 0x3000000 and not isinstance(argv[0], unicode): + if argv and isinstance(argv[0], bytes): for i, x in enumerate(argv): argv[i] = portage._unicode_decode(x, errors='strict') -- cgit v1.2.3-1-g7c22