Skip to content

Commit

Permalink
Merge 15beb44 into ad1b269
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Feb 15, 2018
2 parents ad1b269 + 15beb44 commit 50ae966
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion astropy/io/fits/hdu/base.py
Expand Up @@ -1596,7 +1596,8 @@ def match_header(cls, header):
xtension not in standard_xtensions)

def _summary(self):
return (self.name, self.ver, 'NonstandardExtHDU', len(self._header))
axes = tuple(self.data.shape)
return (self.name, self.ver, 'NonstandardExtHDU', len(self._header), axes)

@lazyproperty
def data(self):
Expand Down

0 comments on commit 50ae966

Please sign in to comment.