fixes the path so that the format of the path really reflects the directories in the system
(path)
| 17 | import os.path |
| 18 | |
| 19 | def fully_normalize_path(path): |
| 20 | """fixes the path so that the format of the path really reflects the directories in the system""" |
| 21 | return os.path.normpath(path) |
| 22 | |
| 23 | join = os.path.join |
| 24 | except: # ImportError or AttributeError. |