Fix duplicate text in IDF header export. (fixes lp:1407336)

This commit is contained in:
Paulo Henrique Silva 2015-01-05 16:51:47 -05:00 committed by Wayne Stambaugh
parent a2129fcd39
commit f5059ec4c2
1 changed files with 1 additions and 1 deletions

View File

@ -548,7 +548,7 @@ bool Export_IDF3( BOARD* aPcb, const wxString& aFullFileName, bool aUseThou )
idfBoard.SetLibraryVersion( 0 );
std::ostringstream ostr;
ostr << "Created by KiCad " << TO_UTF8( GetBuildVersion() );
ostr << "KiCad " << TO_UTF8( GetBuildVersion() );
idfBoard.SetIDFSource( ostr.str() );
try