From 7c5254d13e40c3ca84c382b9b0fa58c6a2dfeaf7 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Wed, 30 Sep 2009 16:05:23 +0000 Subject: reenabled spec file caching git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@820329 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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() -- cgit v1.2.1