Commit 0f055c5c authored by Andreas Jung's avatar Andreas Jung

fix for collector #2178 (zopesh issue)

parent 82bd5aa9
...@@ -84,9 +84,9 @@ ...@@ -84,9 +84,9 @@
############################################################################## ##############################################################################
__doc__="""Object Manager __doc__="""Object Manager
$Id: ObjectManager.py,v 1.133 2001/04/09 19:31:27 andreas Exp $""" $Id: ObjectManager.py,v 1.134 2001/04/21 18:34:51 andreas Exp $"""
__version__='$Revision: 1.133 $'[11:-2] __version__='$Revision: 1.134 $'[11:-2]
import App.Management, Acquisition, Globals, CopySupport, Products import App.Management, Acquisition, Globals, CopySupport, Products
import os, App.FactoryDispatcher, ts_regex, Products import os, App.FactoryDispatcher, ts_regex, Products
...@@ -618,7 +618,7 @@ class ObjectManager( ...@@ -618,7 +618,7 @@ class ObjectManager(
# Perform globbing on list of files (ajung) # Perform globbing on list of files (ajung)
globbing = REQUEST.environ.get('GLOBBING','') globbing = REQUEST.environ.get('GLOBBING','')
if globbing is not None: if globbing :
files = filter(lambda x,g=globbing: fnmatch.fnmatch(x[0],g) , files) files = filter(lambda x,g=globbing: fnmatch.fnmatch(x[0],g) , files)
try: try:
......
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