261
261
ls_list = svnclient.list(path, revision=revision, recurse=False)
263
263
filename, attrs = PysvnList_to_fileinfo(path, ls)
266
268
status_list = svnclient.status(path, recurse=False, get_all=True,
268
270
for status in status_list:
269
271
filename, attrs = PysvnStatus_to_fileinfo(path, status)
271
275
except (pysvn.ClientError, UnversionedDir), e:
272
276
# Could indicate a serious SVN error, or just that the directory is
273
277
# not under version control (which is perfectly normal).