Skip to content

Commit 1d736da

Browse files
author
Sylvain Maillard
committedAug 13, 2014
fix typo in variable name (extra space)
1 parent d42c24f commit 1d736da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/pluginmanager/qgspluginmanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
800800
}
801801
if ( ! metadata->value( "code_repository" ).isEmpty() )
802802
{
803-
html += QString( "<a href='%1'>%2</a>" ).arg( metadata->value( "code_repository" ) ).arg( tr( "code_ repository" ) );
803+
html += QString( "<a href='%1'>%2</a>" ).arg( metadata->value( "code_repository" ) ).arg( tr( "code_repository" ) );
804804
}
805805
html += "<br/>";
806806
}

0 commit comments

Comments
 (0)
Please sign in to comment.