Commit 174e515c authored by Jim Fulton's avatar Jim Fulton

Added Zope debugging shortcut. :)

parent c4245e63
......@@ -82,7 +82,7 @@
# attributions are listed in the accompanying credits file.
#
##############################################################################
__version__='$Revision: 1.6 $'[11:-2]
__version__='$Revision: 1.7 $'[11:-2]
from Publish import publish_module
......@@ -97,3 +97,10 @@ def Main(*args, **kw):
import Test
test=Test.publish
return apply(test, ('Main',)+args, kw)
# What can we say. ;/
def Zope(*args, **kw):
global test
import Test
test=Test.publish
return apply(test, ('Zope',)+args, kw)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment