Skip to content
Snippets Groups Projects
Commit 8f4444b7 authored by Marco De Marco's avatar Marco De Marco
Browse files

Properties delimiter from space to comma

parent eb7ff621
No related branches found
No related tags found
No related merge requests found
...@@ -591,7 +591,7 @@ void MetadataExporter::importExportedTables(std::vector<std::string>& exportedTa ...@@ -591,7 +591,7 @@ void MetadataExporter::importExportedTables(std::vector<std::string>& exportedTa
{ {
std::size_t found; std::size_t found;
if((found=exportedTables.at(i).find(' ')) == std::string::npos) if((found=exportedTables.at(i).find(',')) == std::string::npos)
{ {
std::stringstream errorStream; std::stringstream errorStream;
errorStream << "ExportedTables property has invalid key at " errorStream << "ExportedTables property has invalid key at "
...@@ -639,7 +639,7 @@ void MetadataExporter::importAuthorisedUsers(std::vector<std::string>& authorise ...@@ -639,7 +639,7 @@ void MetadataExporter::importAuthorisedUsers(std::vector<std::string>& authorise
{ {
std::size_t found; std::size_t found;
if((found=authorisedUsers.at(i).find(' ')) == std::string::npos) if((found=authorisedUsers.at(i).find(',')) == std::string::npos)
{ {
std::stringstream errorStream; std::stringstream errorStream;
errorStream << "AuthorisedUsers property has invalid key at " errorStream << "AuthorisedUsers property has invalid key at "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment