220
220
ls_list = svnclient.list(path, revision=revision, recurse=False)
222
222
filename, attrs = PysvnList_tofileinfo(path, ls)
225
225
status_list = svnclient.status(path, recurse=False, get_all=True,
227
227
for status in status_list:
228
228
filename, attrs = PysvnStatus_to_fileinfo(path, status)
230
230
except pysvn.ClientError:
231
231
# Presumably the directory is not under version control.
232
232
# Fallback to just an OS file listing.
234
234
for filename in os.listdir(path):
237
237
# Non-directories will error - that's OK, we just want the "."