remove workaround for multiple query results since that bug is fixed
diff --git a/asterix-examples/src/main/resources/black-cherry/run_black_cherry.py b/asterix-examples/src/main/resources/black-cherry/run_black_cherry.py
index 8616438..7dbf84b 100755
--- a/asterix-examples/src/main/resources/black-cherry/run_black_cherry.py
+++ b/asterix-examples/src/main/resources/black-cherry/run_black_cherry.py
@@ -30,11 +30,8 @@
chunk = urlresponse.read(CHUNK)
if not chunk: break
urlresult += chunk
-
- # QUERY ISSUE 2: UNCOMMENT THIS TO SEE WEIRD BUG
- urlresult = ','.join(urlresult.split(']}{"results":['))
- # Create JSON dump of resulting response
+ # Create JSON dump of resulting response
return loads(urlresult)
except ValueError, e: