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

Signed-off-by: Frediano Ziglio <fzig...@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

_______________________________________________
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/spice-devel

Reply via email to