Advertisement
tari

Untitled

Sep 15th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. PATH_SANITIZATION = dict(((ord(k), ord(v) if v else None) for (k, v) in {
  2.     ':': None,
  3.     '/': '_',
  4.     '\\': '_'
  5. }.items()))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement