Changeset 1381 in tailor


Ignore:
Timestamp:
06/11/07 12:18:40 (6 years ago)
Author:
Henry Nestler <Henry.Ne@…>
Hash name:
20070611101840-09166-8131698ba348b9b721983ac5ce63b7f0a6111f41
Message:

[Monotone] Empty "commit" and "diff" should return english text message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/monotone.py

    r1380 r1381  
    430430 
    431431        mtl = ExternalCommand(cwd=self.working_dir, command=cmd) 
    432         outstr = mtl.execute(stdout=PIPE, stderr=PIPE) 
     432        outstr = mtl.execute(stdout=PIPE, stderr=PIPE, LANG='POSIX') 
    433433        if mtl.exit_status: 
    434434            raise GetUpstreamChangesetsFailure( 
     
    865865            entries = ['.'] 
    866866 
    867         output, error = commit.execute(entries, stdout=PIPE, stderr=PIPE) 
     867        output, error = commit.execute(entries, stdout=PIPE, stderr=PIPE, LANG='POSIX') 
    868868 
    869869        # monotone complaints if there are no changes from the last commit. 
Note: See TracChangeset for help on using the changeset viewer.