Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed wrong port
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10886 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Jun 5, 2009
1 parent b416b63 commit b967172
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/plugins/grass/scripts/qgis.db.connect-login.pg.py
Expand Up @@ -85,13 +85,10 @@ def main():
user = options['user']
password = options['password']

#if not maptable:
# grass.fatal("There is no table connected to this map. Cannot join any column.")

# Test connection
conn = "dbname=" + database
if host: conn += ",host=" + host
if port: conn += ",port=" + host
if port: conn += ",port=" + port

# Unfortunately we cannot test untill user/password is set
if user or password:
Expand Down

0 comments on commit b967172

Please sign in to comment.