[Spice-devel] [PATCH v3 01/51] codegen: Import six module before first use

Frediano Ziglio fziglio at redhat.com
Tue Jul 21 09:45:31 PDT 2015


The module was used in the initial try/except so make sure it is
already imported.

Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
 python_modules/spice_parser.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/python_modules/spice_parser.py b/python_modules/spice_parser.py
index d60bb10..80b559b 100644
--- a/python_modules/spice_parser.py
+++ b/python_modules/spice_parser.py
@@ -1,3 +1,5 @@
+import six
+
 try:
     from pyparsing import Literal, CaselessLiteral, Word, OneOrMore, ZeroOrMore, \
             Forward, delimitedList, Group, Optional, Combine, alphas, nums, restOfLine, cStyleComment, \
@@ -8,7 +10,6 @@ except ImportError:
 
 
 from . import ptypes
-import six
 import sys
 
 cvtInt = lambda toks: int(toks[0])
-- 
2.1.0



More information about the Spice-devel mailing list