From dad43b375807faa36d19b7c3e513e678be26c81c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20Dunand?= <aurelien.dunand@smartjog.com>
Date: Tue, 26 Jul 2011 10:57:38 +0200
Subject: [PATCH] Fix missing colon

---
 installsystems/tools.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/installsystems/tools.py b/installsystems/tools.py
index 88314ee..9f4575d 100644
--- a/installsystems/tools.py
+++ b/installsystems/tools.py
@@ -117,7 +117,7 @@ def abspath(path):
         return path
     elif ptype == "file":
         if path.startswith("file://"):
-            path = path[len("file://")]
+            path = path[len("file://"):]
         return os.path.abspath(path)
     else:
         return None
-- 
GitLab