diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-01-20 03:06:26 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-01-20 04:00:42 +0200 |
| commit | 7867097cd47dc59b806fdec8ad526831ce3ff57f (patch) | |
| tree | 3c7dedec6df52cb443f3a7f67a609f64adbab4f6 /src | |
| parent | 4e55b8cced71c759e72ab5a2ab41f076bb068330 (diff) | |
DB_Query default param_set
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/neo4j_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/neo4j_util.py b/src/server/neo4j_util.py index ac3c3f6e..b2347a86 100644 --- a/src/server/neo4j_util.py +++ b/src/server/neo4j_util.py @@ -26,7 +26,7 @@ class Neo4JException(Exception): class DB_Query(object): - def __init__(self, q_str_or_array, param_set): + def __init__(self, q_str_or_array, param_set={}): """ @param q_str_or_array: cypher query to add - if passed as an array ' '.join(q_str_or_array) is used to convert it to string type |
