1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-13 14:13:32 +02:00

AUP3: Remove unneeded error message

This commit is contained in:
Leland Lucius
2020-07-18 09:25:10 -05:00
parent bb9a881c2a
commit e669b365f1
2 changed files with 1 additions and 11 deletions

View File

@@ -797,15 +797,6 @@ bool Importer::Import( AudacityProject &project,
return false;
}
// Audacity project
if (extension.IsSameAs(wxT("aup3"), false)) {
errorMessage = XO(
/* i18n-hint: %s will be the filename */
"\"%s\" is an Audacity Project file. \nUse the 'File > Open' command to open Audacity Projects.")
.Format( fName );
return false;
}
if( !wxFileExists(fName)){
errorMessage = XO( "File \"%s\" not found.").Format( fName );
return false;