Commit c0f41433 authored by Vincent Pelletier's avatar Vincent Pelletier

CopySupport: None is famously not callable.

parent b258de1b
......@@ -313,7 +313,7 @@ class CopyContainer:
# Call a type based method to reset so properties if necessary
script = self._getTypeBasedMethod('afterClone')
if script is not None and callable(script):
if callable(script):
script()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment