Skip to content

Commit

Permalink
fix type in .info()
Browse files Browse the repository at this point in the history
  • Loading branch information
tylin committed Aug 21, 2015
1 parent 9216f11 commit ef5a3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PythonAPI/pycocotools/coco.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def info(self):
Print information about the annotation file.
:return:
"""
for key, value in self.datset['info'].items():
for key, value in self.dataset['info'].items():
print '%s: %s'%(key, value)

def getAnnIds(self, imgIds=[], catIds=[], areaRng=[], iscrowd=None):
Expand Down

0 comments on commit ef5a3ad

Please sign in to comment.