avoids running abspath on None
parent
a391857013
commit
82603bb2a0
|
@ -576,7 +576,9 @@ class Inventory(object):
|
||||||
if dname is None or dname == '' or dname == '.':
|
if dname is None or dname == '' or dname == '.':
|
||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
dname = cwd
|
dname = cwd
|
||||||
return os.path.abspath(dname)
|
if dname:
|
||||||
|
dname = os.path.abspath(dname)
|
||||||
|
return dname
|
||||||
|
|
||||||
def src(self):
|
def src(self):
|
||||||
""" if inventory came from a file, what's the directory and file name? """
|
""" if inventory came from a file, what's the directory and file name? """
|
||||||
|
|
Loading…
Reference in New Issue