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 8c97462 commit cd9aae7Copy full SHA for cd9aae7
python/plugins/GdalTools/tools/doInfo.py
@@ -70,15 +70,15 @@ def doCopyLine( self ):
70
output = ''
71
items = self.rasterInfoList.selectedItems()
72
for r in items:
73
- output.append( r.text() + "\n" )
+ output += r.text() + "\n"
74
if output:
75
clipboard = QApplication.clipboard()
76
clipboard.setText( output )
77
78
def doCopyAll( self ):
79
80
for r in range( self.rasterInfoList.count() ):
81
- output.append( self.rasterInfoList.item( r ).text() + "\n" )
+ output += self.rasterInfoList.item( r ).text() + "\n"
82
83
84
0 commit comments