diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2015-07-21 17:45:31 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2015-07-23 11:10:57 +0200 |
commit | 4a2a9966749c09465aa85a5fbd19cf7995d06f45 (patch) | |
tree | 2836697d0c0c5ea53f0b89010732b957a6392aae | |
parent | 9625b45edb548e0e4f88d3cfc3b79f30315c8735 (diff) |
codegen: Import six module before first use
The module is used in the initial try/except so make sure it is
already imported.
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
-rw-r--r-- | python_modules/spice_parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
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]) |