Changeset 302 in tailor
- Timestamp:
- 05/17/05 01:41:58 (8 years ago)
- Hash name:
- 20050516234158-97f81-e4e9eaf38bf03caf84a22bf33329ba571eabf2af
- File:
-
- 1 edited
-
vcpx/tailor.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tailor.py
r274 r302 294 294 """ 295 295 296 from os.path import split 296 from os.path import split, sep 297 297 298 298 if source_kind == 'svn': 299 if not (module and module.startswith( '/')):299 if not (module and module.startswith(sep)): 300 300 raise InvocationError('With SVN the module argument is ' 301 'mandatory and must start with a slash') 302 301 'mandatory and must start ' 302 'with a "%s"' % sep) 303 304 if repository.endswith(sep): 305 repository = repository[:-1] 306 303 307 if not subdir: 304 308 subdir = split(module or repository)[1] or ''
Note: See TracChangeset
for help on using the changeset viewer.
