From: Oleg Broytman Date: Thu, 27 Apr 2006 14:36:36 +0000 (+0000) Subject: Added SVN keywords. X-Git-Tag: v2.3.2~93 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=7859b9c50cab8c90424198f476712afb60703b6f;hp=27550cf12d5e7e50f882e53e5e5a632e3758c667;p=mimedecode.git Added SVN keywords. git-svn-id: file:///home/phd/archive/SVN/mimedecode@3 a778b35f-2f12-0410-a9f6-9b1356d76ba6 --- diff --git a/mimedecode.py b/mimedecode.py index c0a9ef3..bfee2fe 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -2,12 +2,18 @@ """Decode MIME message. Author: Oleg Broytmann -Copyright: (C) 2001-2002 PhiloSoft Design +Copyright: (C) 2001-2006 PhiloSoft Design License: GPL """ -__version__ = "2.0.0" -__copyright__ = "Copyright (C) 2001-2002 PhiloSoft Design" +_version = "2.1.0" +__version__ = "$Revision$"[11:-2] +__date__ = "$Date$"[7:-2] +__revision__ = "$Id$"[5:-2] +__author__ = "Oleg Broytmann " +__copyright__ = "Copyright (C) 2001-2006 PhiloSoft Design" +__license__ = "GNU GPL" +__docformat__ = "epytext en" import sys, os @@ -28,7 +34,7 @@ me = os.path.basename(sys.argv[0]) def version(exit=1): sys.stdout.write("""\ BroytMann mimedecode.py version %s, %s -""" % (__version__, __copyright__)) +""" % (_version, __copyright__)) if exit: sys.exit(0)