You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.
A cypher query of the form:
start a=node(*) match p=(a) - [:ACTED_IN] -> (movie) <- [:DIRECTED] - (director) return p;
Produces this result in the ST console:
Traceback (most recent call last):
File "./sublime_plugin.py", line 362, in run_
File "./Cypher.py", line 130, in run
File "./Cypher.py", line 118, in cypher
File "./Cypher.py", line 31, in print_table
File "./Cypher.py", line 31, in
File "./Cypher.py", line 11, in item_to_str
KeyError: 'data'
The text was updated successfully, but these errors were encountered:
I am not familiar with python at all, so I did not create pull request. Problem is in unicode strings processing.
Here's the fix that works for me. Code converts unicode to ascii, replacing missing chars with question mark:
A cypher query of the form:
start a=node(*) match p=(a) - [:ACTED_IN] -> (movie) <- [:DIRECTED] - (director) return p;
Produces this result in the ST console:
Traceback (most recent call last):
File "./sublime_plugin.py", line 362, in run_
File "./Cypher.py", line 130, in run
File "./Cypher.py", line 118, in cypher
File "./Cypher.py", line 31, in print_table
File "./Cypher.py", line 31, in
File "./Cypher.py", line 11, in item_to_str
KeyError: 'data'
The text was updated successfully, but these errors were encountered: