Skip to content
This repository has been archived by the owner on Jan 11, 2018. It is now read-only.

Commit

Permalink
omgwtfbbq
Browse files Browse the repository at this point in the history
  • Loading branch information
d3ming committed Dec 9, 2015
1 parent 511d44e commit 7d1654a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tagcompare/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def path(self):
return self.__getpath(allow_partial=True)

def clone(self, build=None, config=None,
cid=None, size=None, type=None):
cid=None, size=None, type=None, basepath=None):
"""Clones the object with default values from self. Can override specifics
"""
if not build:
Expand All @@ -112,8 +112,11 @@ def clone(self, build=None, config=None,
size = self.size
if not type:
type = self.type
if not basepath:
basepath = self.__basepath

clone = PathBuilder(
build=build, config=config, cid=cid, size=size, type=type)
build=build, config=config, cid=cid, size=size, type=type, basepath=basepath)
return clone

def pathexists(self):
Expand Down

0 comments on commit 7d1654a

Please sign in to comment.