Skip to content

Commit

Permalink
[processing] fix problems with names with capital letters when import…
Browse files Browse the repository at this point in the history
…ing to postgis

fixes #11585
  • Loading branch information
volaya committed Oct 1, 2015
1 parent e8003f2 commit ae71e1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/ImportIntoPostGIS.py
Expand Up @@ -77,8 +77,8 @@ def processAlgorithm(self, progress):

table = self.getParameterValue(self.TABLENAME).strip()
if table == '':
table = layer.name().lower()
table.replace(' ', '')
table = layer.name()
table = table.replace(' ', '').lower()
providerName = 'postgres'

try:
Expand Down

0 comments on commit ae71e1f

Please sign in to comment.