Changeset 594 in tailor for vcpx/monotone.py
- Timestamp:
- 08/16/05 13:09:59 (8 years ago)
- Hash name:
- 20050816110959-97f81-62eb697d67d42b9268858637a7c08793c4fcd732
- File:
-
- 1 edited
-
vcpx/monotone.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/monotone.py
r593 r594 61 61 entries = ['.'] 62 62 63 output = commit.execute(entries, stdout=PIPE, stderr=STDOUT)63 output, error = commit.execute(entries, stdout=PIPE, stderr=PIPE) 64 64 65 65 # monotone complaints if there are no changes from the last commit. 66 66 # we ignore those errors ... 67 67 if commit.exit_status: 68 text = output.read()68 text = error.read() 69 69 if text.find("monotone: misuse: no changes to commit") == -1: 70 70 stderr.write(text)
Note: See TracChangeset
for help on using the changeset viewer.
