[Skip-CI] Fix method override
This commit is contained in:
parent
40e09d246d
commit
806e1eb02d
1 changed files with 2 additions and 2 deletions
|
@ -25,5 +25,5 @@ class Image(Validateable):
|
|||
return result
|
||||
|
||||
def docker_build_commons_path(self):
|
||||
list = [self.build_commons_path, self.docker_build_commons_dir_name]
|
||||
return "/".join(filter_none(list)) + "/"
|
||||
commons_path = [self.build_commons_path, self.docker_build_commons_dir_name]
|
||||
return "/".join(filter_none(commons_path)) + "/"
|
||||
|
|
Loading…
Reference in a new issue