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.
3
Specifically it seems the freeBSD system prefers '--check' as a flag, rather than '--dry-run'.
6
https://bugs.beta.launchpad.net/bzrtools/+bug/84256
10
- args.append('--dry-run')
11
+ if sys.platform.startswith('freebsd'):
12
+ args.append('--check')
14
+ args.append('--dry-run')