summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/store.py
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/edit/store.py')
-rw-r--r--sca-cpp/trunk/modules/edit/store.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/edit/store.py b/sca-cpp/trunk/modules/edit/store.py
index eaa68b1d23..79750975a5 100644
--- a/sca-cpp/trunk/modules/edit/store.py
+++ b/sca-cpp/trunk/modules/edit/store.py
@@ -25,7 +25,7 @@ def storeid(tag):
# Get a store from the cache
def getstore(id, cache):
store = cache.get(id)
- if isNil(store):
+ if isNil(store) or store is None:
return ()
return store