Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,10 @@ $ logica mentions.l run Mentions
Note that cities of Los Angeles and Las Vegas are mentioned in this table due to known
missclasification issue in the GDELT data analysis.
-->

## Citations
For citations, see our list of [Logica publications](https://logica-web.github.io/publications/).

## Feedback

Feel free to create [github issues](https://github.com/EvgSkv/logica/issues)
Expand Down
5 changes: 4 additions & 1 deletion logica.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ def main(argv):
o, _ = p.communicate(formatted_sql.encode())
else:
assert False, 'Unknown engine: %s' % engine
print(o.decode())
try:
print(o.decode())
except BrokenPipeError:
pass


def run_main():
Expand Down