Source code for flask_store.utils

# -*- coding: utf-8 -*-

"""
flask_store.utils
=================
"""


[docs]def path_to_uri(path): """ Swaps \\ for / Other stuff will happen here in the future. """ return path.replace('\\', '/')

http://thisissoon.com

Related Topics