avoid double slash in path
This commit is contained in:
parent
c6c34361b1
commit
e5fdcb45dd
1 changed files with 1 additions and 1 deletions
|
|
@ -740,7 +740,7 @@ class BuildRoot(object):
|
|||
if within:
|
||||
return base
|
||||
else:
|
||||
return "%s/%s" % (self.rootdir(), base)
|
||||
return "%s%s" % (self.rootdir(), base)
|
||||
|
||||
def expire(self):
|
||||
self.session.host.setBuildRootState(self.id,'EXPIRED')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue