Skip to content

Commit

Permalink
fix typo in variable name (extra space)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain Maillard committed Aug 13, 2014
1 parent d42c24f commit 1d736da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pluginmanager/qgspluginmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
}
if ( ! metadata->value( "code_repository" ).isEmpty() )
{
html += QString( "<a href='%1'>%2</a>" ).arg( metadata->value( "code_repository" ) ).arg( tr( "code_ repository" ) );
html += QString( "<a href='%1'>%2</a>" ).arg( metadata->value( "code_repository" ) ).arg( tr( "code_repository" ) );
}
html += "<br/>";
}
Expand Down

0 comments on commit 1d736da

Please sign in to comment.