Changeset 0281fc6c3aef3f7d00aa952c60be9bada83dda86
- Timestamp:
- 01/06/08 15:14:18
(11 months ago)
- Author:
- William McBrine <wmcbrine@gmail.com>
- git-committer:
- William McBrine <wmcbrine@gmail.com> 1199654058 -0500
- git-parent:
[b23d79108ff02b354f50c467614cc01ff24bceef]
- git-author:
- William McBrine <wmcbrine@gmail.com> 1199654058 -0500
- Message:
"Anchor not found" fix -
If a filename happenned to start with the container name, that portion of
the name would be replaced with the folder name when building the anchor
name. Result: things like "Anchor not found: e:\MP4\TV\Bonese:\MP4\TV\Bones
- The Soccer Mom in the MiniVan?.TiVo". My fault; sorry.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfacfd11 |
r0281fc6 |
|
| 78 | 78 | anchor = anchor.replace(bs, '/') |
|---|
| 79 | 79 | anchor = unquote(anchor) |
|---|
| 80 | | anchor = anchor.replace(os.path.sep + cname, local_base_path) |
|---|
| | 80 | anchor = anchor.replace(os.path.sep + cname, local_base_path, 1) |
|---|
| 81 | 81 | if not '://' in anchor: |
|---|
| 82 | 82 | anchor = os.path.normpath(anchor) |
|---|