Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
smicallef committed Apr 8, 2015
1 parent df9b95e commit 70fdab4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/sfp_filemeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,10 @@ def handleEvent(self, event):
val = data['/Producer']

if "/Creator" in data:
if data['/Creator'] != data['/Producer']:
if "/Producer" in data:
if data['/Creator'] != data['/Producer']:
val = data['/Creator']
else:
val = data['/Creator']

if "Application" in data:
Expand Down

0 comments on commit 70fdab4

Please sign in to comment.