Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
Force wrap the address key as a string
Browse files Browse the repository at this point in the history
Fixes an edge case that I ran into via testing. This shouldn't happen in production.
  • Loading branch information
Clayton Burlison committed Mar 16, 2017
1 parent be87dcc commit a98b680
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgroot/Library/Application Support/pinpoint/bin/pinpoint
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ from Foundation import (NSRunLoop,


__author__ = 'Clayton Burlison (https://clburlison.com)'
__version__ = '1.0.3.81'
__version__ = '1.0.3.82'

# Our preferences "bundle_id"
BUNDLE_ID = 'com.clburlison.pinpoint'
Expand Down Expand Up @@ -732,7 +732,7 @@ class ReverseLookup(object):
address = 'Address lookup has been disabled on this computer.'

# update plist with the address data
add = dict(Address=address)
add = dict(Address=str(address))
logging.info("Address is: %s", address)
plist.update(add)

Expand Down

0 comments on commit a98b680

Please sign in to comment.