#2604: compile-messages.py fails on win32
----------------------------------+-----------------------------------------
 Reporter:  Jarosław Zabiełło     |        Owner:  hugo
     Type:  defect                |       Status:  new 
 Priority:  normal                |    Milestone:      
Component:  Internationalization  |      Version:  SVN 
 Severity:  normal                |   Resolution:      
 Keywords:  win32 i18n            |  
----------------------------------+-----------------------------------------
Comment (by Jarosław Zabiełło):

 Good point. Here is never version:
 
 Instead of
 {{{
 cmd = 'msgfmt -o "$djangocompilemo" "$djangocompilepo"'
 }}}
 it should be:
 {{{
 if sys.platform == 'win32':
     cmd = 'msgfmt -o "%djangocompilemo%" "%djangocompilepo%"'
 else:
     cmd = 'msgfmt -o "$djangocompilemo" "$djangocompilepo"'
 }}}

-- 
Ticket URL: <http://code.djangoproject.com/ticket/2604>
Django <http://code.djangoproject.org/>
The web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---

Reply via email to