Skip to content

Commit

Permalink
Minor simplification. Probably left over from when code was more comp…
Browse files Browse the repository at this point in the history
…licated there.
  • Loading branch information
Chris Rossi committed Nov 16, 2012
1 parent 93b0e2d commit 9bf58a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acidfs/__init__.py
Expand Up @@ -103,7 +103,7 @@ def _mkpath(self, path):
else:
parsed = list(filter(None, path.split('/')))
if not path.startswith('/'):
parsed = type(parsed)(self._cwd) + parsed
parsed = list(self._cwd) + parsed
return parsed

def get_base(self):
Expand Down

0 comments on commit 9bf58a9

Please sign in to comment.