Skip to content

Commit

Permalink
Merge pull request #745 from freamon/bugfixes
Browse files Browse the repository at this point in the history
Fix for DB writes
  • Loading branch information
Renelvon committed Oct 7, 2014
2 parents 01be6ab + 0083f93 commit 9c04561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/routingtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def addContact(self, contact):

bucketIndex = self.kbucketIndex(contact.guid)

old_contact = self.buckets[bucketIndex].getContact(contact)
old_contact = self.buckets[bucketIndex].getContact(contact.guid)

if not old_contact:

Expand Down

0 comments on commit 9c04561

Please sign in to comment.