﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
16493	Windows:  makemessages generate django.po should use forward slashes too	raidsan@…	nobody	"develope under windows,   run ""python manage.py makemessages ..."",    will write file path use ""\""  in django.po,[[BR]]
the files copy to product linux server,  should not be valid,  because  unix/linux use ""/""  as path seperater.[[BR]]
the solution should be  use the same ""/"" in path string  even under windows.[[BR]]
so,  I  add a function ""normpath""  to ensure use ""/"" under windows:

{{{
def normpath(filepath):
    p = os.path.normpath(filepath)
    if os.name=='nt':
        p = p.replace(""\\"", ""/"")
    return p
}}}

"	New feature	closed	Core (Management commands)	1.3	Normal	needsinfo			Unreviewed	1	0	0	0	1	0
