Brandon Greeley
Brandon Greeley
I just had the same problem. It works if you do this: ``` $('.clampThis').each(function(index, element) { $clamp(element, { clamp: 1, useNativeClamp: false }); }); ``` It looks like the problem...
Whenever I run unit tests I get the following error: ``` WARNING:root:suspended generator urlfetch(context.py:1276) raised AttributeError('NoneType' object has no attribute 'storage') WARNING:root:suspended generator urlfetch_async(rest_api.py:275) raised AttributeError('NoneType' object has no attribute...
Actually, looks like I needed to add a stub for blobstore as well: ``` self.testbed.init_blobstore_stub() ``` That fixed it.