add % as allowed char, condense CHANGELOG
--HG-- branch : trunk
This commit is contained in:
parent
d1dcf0fa92
commit
ecb19b751a
11
CHANGELOG
11
CHANGELOG
|
@ -1,14 +1,13 @@
|
||||||
Changes between 1.1.1 and 1.1.0
|
Changes between 1.1.1 and 1.1.0
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
- fix py.test to work correctly with execnet >= 1.0.0b4
|
- fix py.test dist-testing to work with execnet >= 1.0.0b4 (required)
|
||||||
|
|
||||||
- re-introduce py.test.cmdline.main for better backward compatibility
|
- re-introduce py.test.cmdline.main() for better backward compatibility
|
||||||
|
|
||||||
- make svnwc.update() default to interactive mode like in 1.0.x
|
- svn paths: fix a bug with path.check(versioned=True) for svn paths,
|
||||||
and add svnwc.update(interactive=False) to inhibit interaction.
|
allow '%' in svn paths, make svnwc.update() default to interactive mode
|
||||||
|
like in 1.0.x and add svnwc.update(interactive=False) to inhibit interaction.
|
||||||
- fix a bug with path.check(versioned=True) for svn paths
|
|
||||||
|
|
||||||
- try harder to have deprecation warnings for py.compat.* accesses
|
- try harder to have deprecation warnings for py.compat.* accesses
|
||||||
report a correct location
|
report a correct location
|
||||||
|
|
|
@ -77,7 +77,7 @@ repositories = RepoCache()
|
||||||
|
|
||||||
# svn support code
|
# svn support code
|
||||||
|
|
||||||
ALLOWED_CHARS = "_ -/\\=$.~+" #add characters as necessary when tested
|
ALLOWED_CHARS = "_ -/\\=$.~+%" #add characters as necessary when tested
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
ALLOWED_CHARS += ":"
|
ALLOWED_CHARS += ":"
|
||||||
ALLOWED_CHARS_HOST = ALLOWED_CHARS + '@:'
|
ALLOWED_CHARS_HOST = ALLOWED_CHARS + '@:'
|
||||||
|
|
Loading…
Reference in New Issue