8000 Merge pull request #6577 from anntzer/fix-mlab-rec-join · FrankYu/matplotlib@0d33b1f · GitHub
[go: up one dir, main page]

Skip to content

Commit 0d33b1f

Browse files
authored
Merge pull request matplotlib#6577 from anntzer/fix-mlab-rec-join
Fix mlab.rec_join.
2 parents a72574d + 90a7133 commit 0d33b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/mlab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2611,7 +2611,7 @@ def mapped_r2field(name):
26112611

26122612
if jointype != 'inner' and defaults is not None:
26132613
# fill in the defaults enmasse
2614-
newrec_fields = list(six.iterkeys(newrec.dtype.fields.keys))
2614+
newrec_fields = list(six.iterkeys(newrec.dtype.fields))
26152615
for k, v in six.iteritems(defaults):
26162616
if k in newrec_fields:
26172617
newrec[k] = v

0 commit comments

Comments
 (0)
0