Skip to content

Commit

Permalink
Merge pull request OpenBazaar#734 from Renelvon/hotfix_1
Browse files Browse the repository at this point in the history
Hotfix 1. Fix OpenBazaar#728
  • Loading branch information
hoffmabc committed Oct 3, 2014
2 parents eea812a + baf5924 commit ccf3d2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@
udpDatagramMaxSize = 8192 # 8 KB

DB_PATH = "db/ob.db"
VERSION = "0.2.0"
VERSION = "0.2.1"
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 ccf3d2a

Please sign in to comment.