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:10:11 (GMT)
commitd79514f49bdcaf162147eee4252e006d21e5af7b (patch)
tree8203cc15d182fb537879ed057339faa1458f46db
parent597cb100bcaccc37c1614b5cfb013da2c43d541d (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)