[hg] galaxy 2878: Revert the additional valid_chars added in cha...
details: http://www.bx.psu.edu/hg/galaxy/rev/286958ef8157 changeset: 2878:286958ef8157 user: Greg Von Kuster <greg@bx.psu.edu> date: Tue Oct 13 16:18:16 2009 -0400 description: Revert the additional valid_chars added in change set 2868. 1 file(s) affected in this change: lib/galaxy/util/__init__.py diffs (12 lines): diff -r a2662059af4d -r 286958ef8157 lib/galaxy/util/__init__.py --- a/lib/galaxy/util/__init__.py Tue Oct 13 13:07:43 2009 -0400 +++ b/lib/galaxy/util/__init__.py Tue Oct 13 16:18:16 2009 -0400 @@ -109,7 +109,7 @@ return text # characters that are valid -valid_chars = set(string.letters + string.digits + " -=_.()/+*^,:?!;|") +valid_chars = set(string.letters + string.digits + " -=_.()/+*^,:?!") # characters that are allowed but need to be escaped mapped_chars = { '>' :'__gt__',
participants (1)
-
Greg Von Kuster