0

equality != assignment...

This commit is contained in:
Aaron Griffith
2015-03-12 12:25:41 -04:00
parent 88de7b1567
commit 0c7441f93d

View File

@@ -97,7 +97,7 @@ def initBucketChunks(config_path):
for name, render in config['renders'].iteritems(): for name, render in config['renders'].iteritems():
for f in render['markers']: for f in render['markers']:
ff = f['filterFunction'] ff = f['filterFunction']
bucketChunkFuncs[ff.__name__] == ff bucketChunkFuncs[ff.__name__] = ff
# yes there's a double parenthesis here # yes there's a double parenthesis here
# see below for when this is called, and why we do this # see below for when this is called, and why we do this