Skip to content

Commit

Permalink
FindQsci: removed the unused exception holder variable
Browse files Browse the repository at this point in the history
master didn't build without that:
-- Found PyQt4 version: 4.10
  File "~/carina/Quantum-GIS/cmake/FindQsci.py", line 41
    except ImportError, e:
                      ^
SyntaxError: invalid syntax
  • Loading branch information
lynxlynxlynx committed Aug 6, 2013
1 parent 020ed2c commit 909411c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/FindQsci.py
Expand Up @@ -38,7 +38,7 @@
try:
from PyQt4.Qsci import QSCINTILLA_VERSION_STR
VER = QSCINTILLA_VERSION_STR
except ImportError, e:
except ImportError:
VER = ""


Expand Down

0 comments on commit 909411c

Please sign in to comment.