Skip to content

Commit c8876f2

Browse files
committedAug 11, 2017
fix fix !"@$%
1 parent 025a234 commit c8876f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎python/plugins/processing/gui/ParametersPanel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ def layerRegistryChanged(self, layers):
8686
def formatParameterTooltip(self, parameter):
8787
return '<p><b>{}</b></p><p>{}</p>'.format(
8888
parameter.description(),
89-
QCoreApplication.translate('ParametersPanel', 'Python identifier: ‘{}’')
90-
k.format('<i>{}</i>'.format(parameter.name()))
89+
QCoreApplication.translate('ParametersPanel', 'Python identifier: ‘{}’').format('<i>{}</i>'.format(parameter.name()))
9190
)
9291

9392
def initWidgets(self):

2 commit comments

Comments
 (2)

nyalldawson commented on Aug 11, 2017

@nyalldawson
Collaborator

Freakin translations. Do we REALLY need them? ;)

jef-n commented on Aug 12, 2017

@jef-n
MemberAuthor

Of course not - only the others ;)

Please sign in to comment.