Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #27 from meanbee/26-file-exception-grammar
Browse files Browse the repository at this point in the history
Correct English in file not found exception
  • Loading branch information
bobbyshaw committed Jan 11, 2016
2 parents f61327c + 8e9f920 commit 637ec7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Meanbee/Magedbm/Command/GetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ protected function downloadBackup($file, $s3, $config, $input)
'SaveAs' => $this->getFilePath($file)
));
} catch (NoSuchKeyException $e) {
$this->getOutput()->writeln('<error>File such file found in S3 bucket.</error>');
$this->getOutput()->writeln('<error>No such file found in S3 bucket.</error>');
exit;
}

Expand Down Expand Up @@ -250,4 +250,4 @@ protected function cleanUp()
{
array_map('unlink', glob(self::TMP_PATH . '/*'));
}
}
}

0 comments on commit 637ec7e

Please sign in to comment.