From e4ef5d39bf38523eaf2caf5453cbeee03f6e36ee Mon Sep 17 00:00:00 2001 From: xoraxax Date: Sat, 17 Feb 2007 15:12:56 +0100 Subject: [PATCH] [svn r39106] Plus sign works fine for me, added to ALLOWED_CHARS in svncommon. --HG-- branch : trunk --- py/path/svn/svncommon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/path/svn/svncommon.py b/py/path/svn/svncommon.py index f378dc747..d982ac365 100644 --- a/py/path/svn/svncommon.py +++ b/py/path/svn/svncommon.py @@ -5,7 +5,7 @@ import os, sys, time, re, string import py from py.__.path import common -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 + '@:'