From 8f4444b71e5aea3816d8d953257e2a67c7fb274f Mon Sep 17 00:00:00 2001
From: Marco De Marco <demarco@oats.inaf.it>
Date: Wed, 4 Dec 2013 12:32:01 +0100
Subject: [PATCH] Properties delimiter from space to comma

---
 src/MetadataExporter.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/MetadataExporter.cpp b/src/MetadataExporter.cpp
index fd13ab4..fbd27d0 100644
--- a/src/MetadataExporter.cpp
+++ b/src/MetadataExporter.cpp
@@ -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 "
-- 
GitLab