X-Git-Url: https://git.alrj.org/?p=bold.git;a=blobdiff_plain;f=Bold%2Ferrors.py;h=28d2c13d4c9461dbbeb31417c8df8209b0ac94b2;hp=98db3e84b144b39f73b6a3b48822e4fac2fda234;hb=04fc98235b338558eaad347b698d63414270589b;hpb=b2cbc828fcbff8ecf501a53ee3b5b62195913923 diff --git a/Bold/errors.py b/Bold/errors.py index 98db3e8..28d2c13 100644 --- a/Bold/errors.py +++ b/Bold/errors.py @@ -7,8 +7,8 @@ # This file is part of bold, the Byte Optimized Linker. # # You can redistribute this file and/or modify it under the terms of the -# GNU Lesser General Public License as published by the Free Software -# Foundation, version 2.1. +# GNU General Public License as published by the Free Software Foundation, +# either version 3 of the License or (at your option) any later version. """Define all the exceptions.""" @@ -42,7 +42,7 @@ class UndefinedSymbol(Exception): return "Undefined reference to '%s'" % self.symbol class RedefinedSymbol(Exception): - """Raised if a symbol is referenced but not declared.""" + """Raised if a symbol is defined more than once.""" def __init__(self, symbol_name): self.symbol = symbol_name def __str__(self):