Show
Ignore:
Timestamp:
09/27/08 22:02:37 (16 years ago)
Author:
jerome
Message:

Removed unnecessary spaces at EOL.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/errors.py

    r3411 r3413  
    88# the Free Software Foundation, either version 3 of the License, or 
    99# (at your option) any later version. 
    10 #  
     10# 
    1111# This program is distributed in the hope that it will be useful, 
    1212# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1414# GNU General Public License for more details. 
    15 #  
     15# 
    1616# You should have received a copy of the GNU General Public License 
    1717# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     
    2727        """Saves the value passed as a parameter.""" 
    2828        self.value = value 
    29          
    30     def __str__(self) :     
     29 
     30    def __str__(self) : 
    3131        """Returns an unicode string representation.""" 
    3232        try : 
    3333            return unicode(self.value, errors="replace") 
    34         except TypeError :     
     34        except TypeError : 
    3535            return unicode(self.value) # None and strings which are already unicode 
    36          
     36 
    3737class PyKotaToolError(PyKotaError) : 
    3838    """PyKota Exception for all executables.""" 
    3939    pass 
    40      
     40 
    4141class PyKotaToolError(PyKotaError) : 
    4242    """PyKota Exception for all executables.""" 
    4343    pass 
    44      
     44 
    4545class PyKotaCommandLineError(PyKotaToolError) : 
    4646    """PyKota Exception for errors on executables' command line.""" 
    4747    pass 
    48      
     48 
    4949class PyKotaStorageError(PyKotaError) : 
    5050    """PyKota Exception for database backend related errors.""" 
    5151    pass 
    52      
     52 
    5353class PyKotaConfigError(PyKotaError) : 
    5454    """PyKota Exception for errors in PyKota's configuration.""" 
    5555    pass 
    56      
     56 
    5757class PyKotaAccounterError(PyKotaError) : 
    5858    """PyKota Exception for errors in PyKota accounters.""" 
    5959    pass 
    60      
     60 
    6161class PyKotaReporterError(PyKotaError) : 
    6262    """PyKota Exception for errors in PyKota report generators.""" 
    6363    pass 
    64      
     64 
    6565class PyKotaLoggingError(PyKotaError) : 
    6666    """PyKota Exception for errors in PyKota logging."""