From ecb19b751a773eeb9a64476391252292cb0d436e Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 20 Nov 2009 09:19:29 +0100 Subject: [PATCH] add % as allowed char, condense CHANGELOG --HG-- branch : trunk --- CHANGELOG | 11 +++++------ py/impl/path/svnwc.py | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7b268cf9c..96f99a57e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,13 @@ 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 - and add svnwc.update(interactive=False) to inhibit interaction. - -- fix a bug with path.check(versioned=True) for svn paths +- svn paths: fix a bug with path.check(versioned=True) for svn paths, + 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. - try harder to have deprecation warnings for py.compat.* accesses report a correct location diff --git a/py/impl/path/svnwc.py b/py/impl/path/svnwc.py index be88d59da..0d172f859 100644 --- a/py/impl/path/svnwc.py +++ b/py/impl/path/svnwc.py @@ -77,7 +77,7 @@ repositories = RepoCache() # svn support code -ALLOWED_CHARS = "_ -/\\=$.~+" #add characters as necessary when tested +ALLOWED_CHARS = "_ -/\\=$.~+%" #add characters as necessary when tested if sys.platform == "win32": ALLOWED_CHARS += ":" ALLOWED_CHARS_HOST = ALLOWED_CHARS + '@:'