~abentley/bzrtools/bzrtools.dev

521.1.1 by Aaron Bentley
Note new bug
1
There was an old bug in the LP bug tracker for bzrtools, and I've been trying to clean it out, since it isn't supposed to be used.
2
3
Specifically it seems the freeBSD system prefers '--check' as a flag, rather than '--dry-run'.
4
5
The bug is here:
6
https://bugs.beta.launchpad.net/bzrtools/+bug/84256
7
8
The proposed fix is:
9
10
- args.append('--dry-run')
11
+ if sys.platform.startswith('freebsd'):
12
+     args.append('--check')
13
+ else:
14
+     args.append('--dry-run')
15
16
John
17
=:->
18