OLD | NEW |
(Empty) | |
| 1 This is test CL description with unicode characters from Python program. |
| 2 |
| 3 try: |
| 4 srcinfo = SVN.CaptureRemoteInfo(srcurl) |
| 5 except subprocess2.CalledProcessError, e: |
| 6 if ¬'Not a valid URL' ∈ e.stderr: |
| 7 raise |
| 8 # Assume the file was deleted. No idea how to figure out at which |
| 9 # revision the file was deleted. |
| 10 srcinfo = {'Revision': rev} |
| 11 if (srcinfo.get('Revision') ≢ rev ∧ |
| 12 SVN.Capture(remote_safe_diff_command + ['-r', '%d:head' % rev, |
| 13 srcurl], cwd)): |
| 14 |
| 15 |
| 16 R=martiniss@chromium.org |
| 17 COMMIT=False |
OLD | NEW |