File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,4 +45,4 @@ This plugin can be installed using the QGIS Plugin Manager.
4545
4646pgRouting v3.x up and running to use this plugin.
4747
48- Additionally, QGIS needs python -psycopg2 installed to be able to connect to the database.
48+ Additionally, QGIS needs python3 -psycopg2 installed to be able to connect to the database.
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ This plugin can be installed using the QGIS Plugin Manager.
3838
3939- This plugin runs only with QGIS 3.x and Python 3.
4040- pgRouting v3.x up and running to use this plugin.
41- - Additionally, QGIS needs python -psycopg2 installed to be able to connect to the database.
41+ - Additionally, QGIS needs python3 -psycopg2 installed to be able to connect to the database.
4242
4343## Links
4444
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ def getPgrVersion(con):
129129 ''' returns version of PostgreSQL database. '''
130130 try :
131131 cur = con .cursor ()
132- cur .execute ('SELECT pgr_version FROM pgr_version ()' )
132+ cur .execute ('SELECT version FROM pgr_full_version ()' )
133133 row = cur .fetchone ()[0 ]
134134 versions = '' .join ([i for i in row if i .isdigit ()])
135135 version = versions [0 ]
You can’t perform that action at this time.
0 commit comments