Signed-off-by: geraldo netto <geraldone...@gmail.com>
---
 scripts/manifest_common.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/manifest_common.py b/scripts/manifest_common.py
index 58b0794..6e74043 100644
--- a/scripts/manifest_common.py
+++ b/scripts/manifest_common.py
@@ -54,8 +54,8 @@ def read_manifest(fn):
         for line in f:
             line = line.rstrip();
             if comment.match(line): continue
-            components = line.split(": ", 2)
-            guestpath = components[0].strip();
+            components = line.split(":", 2)
+            guestpath = components[0].strip()
             hostpath = components[1].strip()
             ret.append((guestpath, hostpath))
     return ret
-- 
2.7.4

-- 
You received this message because you are subscribed to the Google Groups "OSv 
Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to osv-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to