Show More
@@ -161,8 +161,7 b' def _auxencode(path, dotencode):' | |||
|
161 | 161 | res[i] = n |
|
162 | 162 | if n[-1] in '. ': |
|
163 | 163 | # encode last period or space ('foo...' -> 'foo..~2e') |
|
164 |
|
|
|
165 | res[i] = n | |
|
164 | res[i] = n[:-1] + "~%02x" % ord(n[-1]) | |
|
166 | 165 | return '/'.join(res) |
|
167 | 166 | |
|
168 | 167 | _maxstorepathlen = 120 |
General Comments 0
You need to be logged in to leave comments.
Login now