Skip to content

Commit

Permalink
Merge pull request #1 from ZWS2014/master
Browse files Browse the repository at this point in the history
Fixed line 41 where tab was used instead of spaces
  • Loading branch information
guinslym committed Dec 7, 2015
2 parents 06e33b3 + 34b2466 commit 1b9a03a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyexifinfo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_json(filename):
s = s.rstrip('\r\n')
return json.loads(s)
else:
return 0
return 0

def get_csv(filename):
'''Return a csv representation of the exif
Expand Down Expand Up @@ -84,4 +84,4 @@ def imageWidth(filename):
def imageHeight(filename):
"""Returns the file height"""
result = information(filename)
return result.get('PNG:imageHeight', 0)
return result.get('PNG:imageHeight', 0)

0 comments on commit 1b9a03a

Please sign in to comment.