Update single.py to always use '/' and with prev commit

This commit is contained in:
Kevin Brightwell 2016-08-17 14:26:26 -04:00
parent 366937830c
commit 60d56be14c
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ def get_version():
def process_file(filename, out):
global includes
filename = os.path.normpath(filename)
relativefilename = filename.replace(script_path + os.sep, "")
relativefilename = filename.replace(script_path + os.sep, "").replace("\\", "/")
if filename in includes:
return

View File

@ -20,8 +20,8 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// This file was generated with a script.
// Generated 2016-08-17 18:29:14.217062 UTC
// This header was generated with sol v2.11.3 (revision 7903e1e)
// Generated 2016-08-17 18:29:29.153274 UTC
// This header was generated with sol v2.11.3 (revision 3669378)
// https://github.com/ThePhD/sol2
#ifndef SOL_SINGLE_INCLUDE_HPP