fetch: add common helper _strip_leading_slashes()

Several fetcher need a way to strip leading slashes off a local path.
This helper-function consolidates all such occurances.

(Bitbake rev: 823a02185ed109054c6c1ae366221aaed0353f24)

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Bernhard Reutner-Fischer
2010-11-17 14:44:40 +01:00
committed by Richard Purdie
parent d0d67a9fe2
commit 87b6f7d27a
6 changed files with 13 additions and 22 deletions

View File

@@ -113,8 +113,7 @@ class Perforce(Fetch):
if which != -1:
base = path[:which]
if base[0] == "/":
base = base[1:]
base = self._strip_leading_slashes(base)
cset = Perforce.getcset(d, path, host, user, pswd, parm)