Show
Ignore:
Timestamp:
05/21/05 10:18:35 (19 years ago)
Author:
jerome
Message:

Moved the copyright strings out of the docstrings

Files:
1 modified

Legend:

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

    r2241 r2267  
    6868class Tool : 
    6969    """Base class for tools with no database access.""" 
    70     def __init__(self, lang="", charset=None, doc="PyKota %s (c) 2003-2004 %s" % (version.__version__, version.__author__)) : 
     70    def __init__(self, lang="", charset=None, doc="PyKota v%s (c) %s %s" % (version.__version__, version.__copyright__, version.__author__)) : 
    7171        """Initializes the command line tool.""" 
    7272        # did we drop priviledges ? 
     
    215215        except AttributeError :     
    216216            pass 
    217         print _(self.documentation) % (version.__version__, version.__author__) 
     217        print _(self.documentation) % (version.__version__, version.__copyright__, version.__author__, version.__author__) 
    218218        sys.exit(0) 
    219219