Commit 243635da authored by Ken Manheimer's avatar Ken Manheimer

Obey tabnanny - removed an incongruous tab.

parent e31ee667
...@@ -107,8 +107,8 @@ Aqueduct database adapters, etc. ...@@ -107,8 +107,8 @@ Aqueduct database adapters, etc.
This module can also be used as a simple template for implementing new This module can also be used as a simple template for implementing new
item types. item types.
$Id: SimpleItem.py,v 1.37 1999/03/03 22:41:32 brian Exp $''' $Id: SimpleItem.py,v 1.38 1999/03/09 16:05:12 klm Exp $'''
__version__='$Revision: 1.37 $'[11:-2] __version__='$Revision: 1.38 $'[11:-2]
import regex, sys, Globals, App.Management import regex, sys, Globals, App.Management
from webdav.Resource import Resource from webdav.Resource import Resource
...@@ -143,7 +143,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs): ...@@ -143,7 +143,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs):
def manage_workspace(self, REQUEST): def manage_workspace(self, REQUEST):
"""Dispatch to first interface in manage_options """Dispatch to first interface in manage_options
""" """
try: try:
m=self.manage_options[0]['action'] m=self.manage_options[0]['action']
if m=='manage_workspace': raise TypeError if m=='manage_workspace': raise TypeError
except: return 'This object has no management interface' except: return 'This object has no management interface'
......
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