Django

Code

Changeset 1821

Show
Ignore:
Timestamp:
01/05/06 08:09:22 (3 years ago)
Author:
hugo
Message:

fixes #1161 - added quotes to unique-messages.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/bin/unique-messages.py

    r1179 r1821  
    2020            sys.stderr.write('processing file %s in %s\n' % (file, dirpath)) 
    2121            pf = os.path.splitext(os.path.join(dirpath, file))[0] 
    22             cmd = 'msguniq %s.po' % pf 
     22            cmd = 'msguniq "%s.po"' % pf 
    2323            stdout = os.popen(cmd) 
    2424            msg = stdout.read()