diff options
author | W. Trevor King <wking@tremily.us> | 2012-08-23 09:46:22 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-08-23 09:46:22 -0400 |
commit | 200c02b015b4bee355c71ae2c0563711c5a76863 (patch) | |
tree | a3b02c8bae150d3992c29083f3a8cf2a40c2a1cb /libbe | |
parent | f174d8943c2edea25306ab522c27f69bbebd0be3 (diff) | |
download | bugseverywhere-200c02b015b4bee355c71ae2c0563711c5a76863.tar.gz |
storage:vcs:hg: fix missformed file_a -> file_b message typo.
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/storage/vcs/hg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/vcs/hg.py b/libbe/storage/vcs/hg.py index 176719c..ce7cc90 100644 --- a/libbe/storage/vcs/hg.py +++ b/libbe/storage/vcs/hg.py @@ -242,7 +242,7 @@ class Hg(base.VCS): assert file_a.startswith('a/'), \ 'missformed file_a %s' % file_a assert file_b.startswith('b/'), \ - 'missformed file_a %s' % file_b + 'missformed file_b %s' % file_b file = file_a[2:] assert file_b[2:] == file, \ 'diff file missmatch %s != %s' % (file_a, file_b) |