Column info attribute doesn't get copied

Issue #1967 resolved
Former user created an issue

A Column copied from a mixin class will not copy the info attribute.

Simple fix involves schema.py:

add:

line 731 self.info = kwargs.pop('info', {})

remove: lines 770-771

add: line 909 info=self.info,

Comments (2)

  1. Log in to comment