This change stops the following warning from being logged:
heat/heat/engine/resources.py:141: DeprecationWarning: object.__new__()
takes no parameters
return super(Resource, cls).__new__(cls, name, json, stack)
Change-Id: Icf6187fdcc460d9cd732ebfc0cf14390dc240c5c
if cls != Resource:
# Call is already for a subclass, so pass it through
- return super(Resource, cls).__new__(cls, name, json, stack)
+ return super(Resource, cls).__new__(cls)
# Select the correct subclass to instantiate
import resource_types