Skip to content

Commit

Permalink
[BUGFIX] Fixing bug in map contrib manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvlk committed May 17, 2017
1 parent 12cdf22 commit 5744e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyplanet/contrib/map/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async def update_list(self, full_update=False):

maps = await asyncio.gather(*coroutines)
async with self.lock:
self._maps = maps
self._maps = set(maps)
else:
# Only update/insert the changed bits, (not checking for removed maps!!).
async with self.lock:
Expand Down

0 comments on commit 5744e4e

Please sign in to comment.