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 0b9ac8b commit 1bf8997Copy full SHA for 1bf8997
python/plugins/fTools/tools/doVisual.py
@@ -180,7 +180,10 @@ def runFinishedFromThread(self, output):
180
else:
181
self.tblUnique.setColumnCount(2)
182
for rec in range(numRows):
183
- tmp = result[rec].split(":")
+ if ":" not in result[rec]:
184
+ tmp = result[rec].split(u"\uff1a")
185
+ else:
186
+ tmp = result[rec].split(":")
187
item = QTableWidgetItem(tmp[0])
188
self.tblUnique.setItem(rec, 0, item)
189
item = QTableWidgetItem(tmp[1])
0 commit comments