diff options
Diffstat (limited to 'python/qpid')
| -rw-r--r-- | python/qpid/ops.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/ops.py b/python/qpid/ops.py index 11e7d11fe9..422a104466 100644 --- a/python/qpid/ops.py +++ b/python/qpid/ops.py @@ -209,8 +209,8 @@ def make(nd): from qpid_config import amqp_spec as file pclfile = "%s.ops.pcl" % file -if False and (os.path.exists(pclfile) and - os.path.getmtime(pclfile) > os.path.getmtime(file)): +if os.path.exists(pclfile) and \ + os.path.getmtime(pclfile) > os.path.getmtime(file): f = open(pclfile, "read") types = pickle.load(f) f.close() |
