From 4eaadcae5c86029b896e10ed8177904305f281ad Mon Sep 17 00:00:00 2001
From: Alex Shvartzkop <dudesuchamazing@gmail.com>
Date: Wed, 22 Jan 2025 13:33:59 +0300
Subject: [PATCH] Fix PCM logger format string usage.

---
 kicad/pcm/pcm.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kicad/pcm/pcm.cpp b/kicad/pcm/pcm.cpp
index 0e6ce087ce..eeec5c3d19 100644
--- a/kicad/pcm/pcm.cpp
+++ b/kicad/pcm/pcm.cpp
@@ -274,7 +274,7 @@ bool PLUGIN_CONTENT_MANAGER::FetchRepository( const wxString& aUrl, PCM_REPOSITO
     {
         if( m_dialog )
         {
-            wxLogError( wxString::Format( _( "Unable to parse repository: %s" ), e.what() ) );
+            wxLogError( _( "Unable to parse repository: %s" ), e.what() );
             wxLogError( _( "The given repository URL does not look like a valid KiCad package "
                            "repository. Please double check the URL." ) );
         }