mirror of https://github.com/desaster/kippo.git
fix incorrect syntax, fixes #126
This commit is contained in:
parent
5f06a22fca
commit
957508f3b7
|
@ -28,9 +28,9 @@ def recurse(root, tree, count = 0):
|
|||
entry = [name, T_FILE, s.st_uid, s.st_gid, s.st_size, s.st_mode, \
|
||||
int(s.st_ctime), [], None, None]
|
||||
|
||||
if S_ISLNK(s[ST_MODE]):
|
||||
entry[A_TYPE] = T_LINK
|
||||
entry[A_TARGET] = os.path.realpath(path)
|
||||
if S_ISLNK(s[ST_MODE]):
|
||||
entry[A_TYPE] = T_LINK
|
||||
entry[A_TARGET] = os.path.realpath(path)
|
||||
elif S_ISDIR(s[ST_MODE]):
|
||||
entry[A_TYPE] = T_DIR
|
||||
if not path.startswith('/proc/'):
|
||||
|
@ -47,7 +47,7 @@ def recurse(root, tree, count = 0):
|
|||
entry[A_TYPE] = T_FIFO
|
||||
else:
|
||||
sys.stderr.write('We should handle %s' % path)
|
||||
sys.exit(1)
|
||||
sys.exit(1)
|
||||
|
||||
tree.append(entry)
|
||||
|
||||
|
|
Loading…
Reference in New Issue