Fix using image file for clone source

This commit is contained in:
2Shirt 2018-09-03 21:34:14 -06:00
parent b2e287520c
commit 7cfdddcfbd
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -41,6 +41,7 @@ class BaseObj():
"""Base object used by DevObj, DirObj, and ImageObj.""" """Base object used by DevObj, DirObj, and ImageObj."""
def __init__(self, path): def __init__(self, path):
self.type = 'base' self.type = 'base'
self.parent = None
self.path = os.path.realpath(path) self.path = os.path.realpath(path)
self.set_details() self.set_details()