Skip to content

Commit

Permalink
Don't use semi-colons in auto-generated config files
Browse files Browse the repository at this point in the history
fixes #11438
  • Loading branch information
gunnarbeutner committed Apr 20, 2016
1 parent ba3eeaf commit b7ee26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/nodeutility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ void NodeUtility::SerializeObject(std::ostream& fp, const Dictionary::Ptr& objec
ConfigWriter::EmitIdentifier(fp, kv.first, true);
fp << " = ";
ConfigWriter::EmitValue(fp, 1, kv.second);
fp << ";\n";
fp << "\n";
}

fp << "}\n\n";
Expand Down

0 comments on commit b7ee26f

Please sign in to comment.