X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2FExceptions.py;h=1004d5b7829f5cfada98a5fd440fe77b2e46f264;hb=d531cfaf5185ca1e74a5f15c2e3b1254968200de;hp=de2a670877345652c52ca84cc9d2ce720fa08e4b;hpb=a0d22ecfe8b0fd6fd7b2363048919b6f0cdaa2ad;p=bootmanager.git diff --git a/source/Exceptions.py b/source/Exceptions.py index de2a670..1004d5b 100644 --- a/source/Exceptions.py +++ b/source/Exceptions.py @@ -7,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