Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-12-13 12:07:22 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-12-13 12:07:22 (GMT)
commit8d9ca2fd52878bd95475c385fe74925733c68af9 (patch)
treec9f9544f5bfd5939dbe1f133cb4a3943758011c6
parent510f81d585ddb860196dca12dcd348dfa68b39b3 (diff)
Check the secore config file is not empty. (neuralis)
-rw-r--r--secore/indexerconnection.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/secore/indexerconnection.py b/secore/indexerconnection.py
index be82319..84ea9a1 100644
--- a/secore/indexerconnection.py
+++ b/secore/indexerconnection.py
@@ -82,6 +82,8 @@ class IndexerConnection(object):
return
fd = open(config_file)
config_str = fd.read()
+ if not config_str:
+ return
fd.close()
(self._field_actions, mappings, self._next_docid) = _cPickle.loads(config_str)