Skip to content

Commit

Permalink
fixed Issue espeed#96
Browse files Browse the repository at this point in the history
  • Loading branch information
topiaruss committed Jul 10, 2013
1 parent fcfab73 commit 2ac26be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bulbs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def build_path(*args):
# don't include segment if it's None
# quote_plus doesn't work for neo4j index lookups
# e.g., index/node/test_idxV/name/James+Thornton
segments = [quote(unicod(segment).decode('utf-8').encode('utf-8'), safe='') for segment in args if segment is not None]
segments = [quote(unicode(segment).decode('utf-8').encode('utf-8'), safe='') for segment in args if segment is not None]
path = "/".join(segments)
return path

Expand Down

0 comments on commit 2ac26be

Please sign in to comment.