X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2FExceptions.py;h=5f994426f152eefc105475154f0bf926de80f371;hb=HEAD;hp=e1591def021fc72d0496c4652e82531adba25d09;hpb=1136f7d3b68de92034e188e30863a565d738ea52;p=bootmanager.git diff --git a/source/Exceptions.py b/source/Exceptions.py index e1591de..5f99442 100644 --- a/source/Exceptions.py +++ b/source/Exceptions.py @@ -1,7 +1,4 @@ -#!/usr/bin/python -# -# $Id$ -# $URL$ +#!/usr/bin/python2 # # Copyright (c) 2003 Intel Corporation # All rights reserved. @@ -10,15 +7,15 @@ # All rights reserved. class BootManagerException(Exception): - def __init__( self, err ): + def __init__(self, err): self.__fault= err - def __str__( self ): + def __str__(self): return self.__fault class BootManagerAuthenticationException(Exception): - def __init__( self, err ): + def __init__(self, err): self.__fault= err - def __str__( self ): + def __str__(self): return self.__fault