Skip to content

Commit

Permalink
make sure to decode idx filename extension as utf #52
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Aug 28, 2015
1 parent 258c081 commit 9a7f3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtree/index.py
Expand Up @@ -196,7 +196,7 @@ def __init__(self, *args, **kwargs):
self.properties.filename = basename

# check we can read the file
f = basename + "." + self.properties.idx_extension
f = basename + "." + self.properties.idx_extension.decode("utf-8")
p = os.path.abspath(f)


Expand Down

0 comments on commit 9a7f3c7

Please sign in to comment.