Skip to content

Commit

Permalink
fix missing 'fix_raw_path' in Document
Browse files Browse the repository at this point in the history
  • Loading branch information
sirfoga committed Oct 29, 2017
1 parent e3b28ef commit 9b19ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hal/files/models/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_path_name(self):
Name of path, name of file (or folder)
"""

path = self.fix_raw_path(os.path.dirname(os.path.abspath(self.path)))
path = fix_raw_path(os.path.dirname(os.path.abspath(self.path)))
name = os.path.basename(self.path)
return path, name

Expand Down

0 comments on commit 9b19ad9

Please sign in to comment.