Commit 8f4444b7 authored by Marco De Marco's avatar Marco De Marco
Browse files

Properties delimiter from space to comma

parent eb7ff621
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -591,7 +591,7 @@ void MetadataExporter::importExportedTables(std::vector<std::string>& exportedTa
    {
        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;
            errorStream << "ExportedTables property has invalid key at "
@@ -639,7 +639,7 @@ void MetadataExporter::importAuthorisedUsers(std::vector<std::string>& authorise
    {
        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;
            errorStream << "AuthorisedUsers property has invalid key at "