Skip to content

Commit

Permalink
Add a semicolon at the end of pproperties command output
Browse files Browse the repository at this point in the history
  • Loading branch information
King committed Jan 3, 2016
1 parent 716f10c commit 8362374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/FBClassDump.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,4 +357,4 @@ def prettyPrintString(self):
if self.attributes.has_key('S'):
attrs.append("setter={}".format(self.attributes['S']))

return "@property ({}) {} {}".format(", ".join(attrs), decode(self.attributes['T']), self.name)
return "@property ({}) {} {};".format(", ".join(attrs), decode(self.attributes['T']), self.name)

0 comments on commit 8362374

Please sign in to comment.