Skip to content

Commit

Permalink
Merge pull request #1536 from Ecologeek/bugfix
Browse files Browse the repository at this point in the history
fix typo in variable name (extra space)
  • Loading branch information
jef-n committed Aug 13, 2014
2 parents d42c24f + 1d736da commit a6a6177
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 a6a6177

Please sign in to comment.