64 |
|
|
65 |
for t in session.Tables(): |
for t in session.Tables(): |
66 |
if self.choice_left_table is not None: |
if self.choice_left_table is not None: |
67 |
self.choice_left_table.Append(t.transient_table().Title(), t) |
self.choice_left_table.Append(t.Title(), t) |
68 |
|
|
69 |
# If there is no choice_left_table then self.left_table will |
# If there is no choice_left_table then self.left_table will |
70 |
# be the keft table so we can simply leave it out on the |
# be the keft table so we can simply leave it out on the |
71 |
# right side. |
# right side. |
72 |
if t is not self.left_table: |
if t is not self.left_table: |
73 |
self.choice_right_table.Append(t.transient_table().Title(), t) |
self.choice_right_table.Append(t.Title(), t) |
74 |
|
|
75 |
if self.choice_left_table is None: |
if self.choice_left_table is None: |
76 |
for col in self.left_table.Columns(): |
for col in self.left_table.Columns(): |