Commit f5059ec4 authored by Paulo Henrique Silva's avatar Paulo Henrique Silva Committed by Wayne Stambaugh
Browse files

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

parent a2129fcd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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