We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e10f2c6 commit a6ce56eCopy full SHA for a6ce56e
src/plugins/grass/scripts/qgis.db.connect-login.pg.py
@@ -72,7 +72,10 @@
72
import sys
73
import os
74
import string
75
-import grass
+try:
76
+ import grass
77
+except:
78
+ raise Exception ("Cannot find 'grass' Python module. Python is supported by GRASS from version 6.4" )
79
80
def main():
81
host = options['host']
0 commit comments