Skip to content

Commit a6a6177

Browse files
committedAug 13, 2014
Merge pull request #1536 from Ecologeek/bugfix
fix typo in variable name (extra space)
2 parents d42c24f + 1d736da commit a6a6177

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)