Author: bugman Date: Sat Jan 6 04:43:19 2007 New Revision: 2940 URL: http://svn.gna.org/viewcvs/relax?rev=2940&view=rev Log: Ported r2936 from the 1.3 line. The command used was: svn merge -r2938:2939 svn+ssh://bugman@xxxxxxxxxxx/svn/relax/1.3 This change fixes bug #8182 (https://gna.org/bugs/index.php?8182). The commit message of the revision was: The fix was to change the class string 'boolean_doc' of the selection prompt class into a private variable. Modified: 1.2/prompt/select.py Modified: 1.2/prompt/select.py URL: http://svn.gna.org/viewcvs/relax/1.2/prompt/select.py?rev=2940&r1=2939&r2=2940&view=diff ============================================================================== --- 1.2/prompt/select.py (original) +++ 1.2/prompt/select.py Sat Jan 6 04:43:19 2007 @@ -26,7 +26,7 @@ class Select: - boolean_doc = """ + __boolean_doc = """ Boolean operators ~~~~~~~~~~~~~~~~~ @@ -333,4 +333,4 @@ ######################### # Read function. - read.__doc__ = read.__doc__ + "\n\n" + boolean_doc + "\n" + read.__doc__ = read.__doc__ + "\n\n" + __boolean_doc + "\n"