Fix position of imports from __future__.
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
Sun, 20 Sep 2009 16:48:13 +0000 (16:48 -0000)
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
Sun, 20 Sep 2009 16:48:13 +0000 (16:48 -0000)
svn path=/main/trunk/; revision=14296

pym/portage/__init__.py
pym/portage/sets/__init__.py

index aa7520eddc8c855203d274aab90ac6c9328b42a9..a905d8e20532e352fa58f7216cc249e52780aaaa 100644 (file)
@@ -3,6 +3,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
 
 VERSION="$Rev$"[6:-2] + "-svn"
 
@@ -10,8 +11,6 @@ VERSION="$Rev$"[6:-2] + "-svn"
 # START OF IMPORTS -- START OF IMPORTS -- START OF IMPORTS -- START OF IMPORT
 # ===========================================================================
 
-from __future__ import print_function
-
 try:
        import sys
        import codecs
index c617efc3a5a2fe43b9db4ad7d5afb0ba902e74b2..01ce6605592151e1329ed11c02b20d061270e839 100644 (file)
@@ -2,11 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 __all__ = ["SETPREFIX", "get_boolean", "SetConfigError",
        "SetConfig", "load_default_config"]
 
-from __future__ import print_function
-
 try:
        from configparser import SafeConfigParser, NoOptionError
 except ImportError: