]> git.phdru.name Git - mimedecode.git/commitdiff
Added SVN keywords.
authorOleg Broytman <phd@phdru.name>
Thu, 27 Apr 2006 14:36:36 +0000 (14:36 +0000)
committerOleg Broytman <phd@phdru.name>
Thu, 27 Apr 2006 14:36:36 +0000 (14:36 +0000)
git-svn-id: file:///home/phd/archive/SVN/mimedecode@3 a778b35f-2f12-0410-a9f6-9b1356d76ba6

mimedecode.py

index c0a9ef3ac76371defeff55e2f53d4c3ab047c3c7..bfee2fe65c0d0c9f001c40c6245b3d9a80c31c17 100755 (executable)
@@ -2,12 +2,18 @@
 """Decode MIME message.
 
 Author: Oleg Broytmann <phd@phd.pp.ru>
-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 <phd@phd.pp.ru>"
+__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)