Show
Ignore:
Timestamp:
10/12/04 00:53:06 (20 years ago)
Author:
jalet
Message:

Postponed string interpolation to help message's output method

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/dumpykota

    r1796 r1803  
    2424# 
    2525# $Log$ 
     26# Revision 1.14  2004/10/11 22:53:05  jalet 
     27# Postponed string interpolation to help message's output method 
     28# 
    2629# Revision 1.13  2004/10/11 12:49:06  jalet 
    2730# Renders help translatable 
     
    157160Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 
    158161 
    159 Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 
     162Please e-mail bugs to: %s""") 
    160163         
    161164class DumPyKota(PyKotaTool) :         
     
    233236        """Dumps datas as XML.""" 
    234237        x = jaxml.XML_document(encoding="UTF-8") 
    235         x.pykota(version=version.__version__) 
     238        x.pykota(version=version.__version__, author=version.__author__) 
    236239        x.dump(storage=self.config.getStorageBackend()["storagebackend"], type=datatype) 
    237240        headers = entries[0]