Skip to content

Commit

Permalink
Fix bug due to typo.
Browse files Browse the repository at this point in the history
* Bug found by: harrymmmm
* Fix proposed by: freamon
  • Loading branch information
Renelvon committed Oct 3, 2014
1 parent 75a7901 commit 9202f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/market.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def republish_contracts(self):
contract = listing.get('Contract')
keywords = contract.get('item_keywords') if contract is not None else []

t3 = Thread(target=self.update_keywords_on_network, args=(listings.get('key'), keywords,))
t3 = Thread(target=self.update_keywords_on_network, args=(listing.get('key'), keywords,))
t3.start()

self.update_listings_index()
Expand Down

0 comments on commit 9202f73

Please sign in to comment.