﻿ticket	summary	type	release	owner	status	created	modified	_description	_reporter
14047	Unable to get size if path contains space character	defect	1.0	Cinc-th	new	2021-08-21T18:53:51+02:00	2021-08-21T18:53:51+02:00	"In subversioncli/svn_cli.py"", Line 931, get_file_size_rev

{{{
#!python
       if parts:
927	                if parts[name] == './':
928	                    # We want to know the size and revision for the path, not the contents.
929	                    # If this is a directory path we end here.
930	                    return None, int(parts[changerev])
931	                return int(parts[size]), int(parts[changerev])
932	        raise SubversionCliError(""Can't get file size and revision for %s %s."" % (self.path, self.rev))
}}}

get ValueError: invalid literal for int() with base 10: u'Aug'
because my ""line"" variable =
{{{
    947 Bear                0 Aug 13 09:04 新文字文件 (2).txt
}}}
you see there is a space on my filename. 
code tries to get size by parts[size] where size = -5 will get a wrong value.

I think there are two parts will contain space: Author and Filename

Thanks."	bear330
