Update of /cvsroot/pymerase/pymerase/output/PyTkWidgets
In directory sc8-pr-cvs1:/tmp/cvs-serv24259
Modified Files:
Templates.py
Log Message:
actually returns templates now
Index: Templates.py
===================================================================
RCS file: /cvsroot/pymerase/pymerase/output/PyTkWidgets/Templates.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Templates.py 4 Jan 2003 00:07:10 -0000 1.1
--- Templates.py 4 Jan 2003 00:15:56 -0000 1.2
***************
*** 33,38 ****
class Templates:
! def getBasicTemplate():
template = """#!/usr/bin/env python
###########################################################################
--- 33,40 ----
class Templates:
+ def __init__(self):
+ pass
! def getBasicTemplate(self):
template = """#!/usr/bin/env python
###########################################################################
***************
*** 94,101 ****
root.mainloop()
"""
! return template
! def getDbTemplate():
template = """#!/usr/bin/env python
###########################################################################
--- 96,103 ----
root.mainloop()
"""
! return template
! def getDbTemplate(self):
template = """#!/usr/bin/env python
###########################################################################
***************
*** 165,167 ****
root.mainloop()
"""
! return template
--- 167,169 ----
root.mainloop()
"""
! return template
|