Skip to content

Commit

Permalink
fixed append in load-fixtures command
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodip committed Jul 19, 2011
1 parent cf32e1e commit 62ce9a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/LoadFixturesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('loading fixtures');

$dataLoader = new DataLoader($this->getContainer()->get('mandango'));
$dataLoader->load($data, $input->getOption('append'));
$dataLoader->load($data, !$input->getOption('append'));
}
}

0 comments on commit 62ce9a5

Please sign in to comment.