Changeset 912

Show
Ignore:
Timestamp:
07/13/07 09:38:01
Author:
crchemist
Message:

cleanup code.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • qSEOptimizer/branches/qSEOptimizer-plone-3.0/__init__.py

    r910 r912  
    77    # for Plone-2.1 and higher 
    88    from Products.CMFPlone.PloneTool import PloneTool 
     9    _present = True 
     10except ImportError: 
     11    _present = False 
    912 
     13if _present: 
    1014    old_lmt = PloneTool.listMetaTags 
    1115 
     
    5155 
    5256    PloneTool.listMetaTags = listMetaTags 
    53 except ImportError: 
    54     pass 
     57 
    5558 
    5659