FindQsci: removed the unused exception holder variable

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
This commit is contained in:
Jaka Kranjc 2013-08-05 17:49:51 +02:00
parent 020ed2c537
commit 909411ce9d

View File

@ -38,7 +38,7 @@ __copyright__ = 'Copyright 2012, The QGIS Project'
try:
from PyQt4.Qsci import QSCINTILLA_VERSION_STR
VER = QSCINTILLA_VERSION_STR
except ImportError, e:
except ImportError:
VER = ""