Skip to content

Commit

Permalink
Merge pull request #1508 from franzwilding/master
Browse files Browse the repository at this point in the history
Fix InvalidArgumentException on config:export:content:type
  • Loading branch information
enzolutions committed Dec 16, 2015
2 parents 3db5595 + 6d0a11c commit 78680c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/Config/ExportContentTypeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->configStorage = $this->getConfigStorage();

$module = $input->getOption('module');
$contentType = $input->getArgument('content_type');
$contentType = $input->getArgument('content-type');
$optionalConfig = $input->getOption('optional-config');

$contentTypeDefinition = $this->entity_manager->getDefinition('node_type');
Expand Down

0 comments on commit 78680c4

Please sign in to comment.