Mercurial > hgsubversion
comparison tests/test_template_keywords.py @ 835:f089ca13cc4c
test_template_keywords.py: fix indentation of revset except block
| author | Yonggang Luo <luoyonggang@gmail.com> |
|---|---|
| date | Wed, 12 Oct 2011 15:50:47 +0800 |
| parents | 312b37bc5e20 |
| children | d741f536f23a |
comparison
equal
deleted
inserted
replaced
| 834:27a2136e89cd | 835:f089ca13cc4c |
|---|---|
| 13 | 13 |
| 14 try: | 14 try: |
| 15 from mercurial import revset | 15 from mercurial import revset |
| 16 revset.methods | 16 revset.methods |
| 17 except ImportError: | 17 except ImportError: |
| 18 revset = None | 18 revset = None |
| 19 | 19 |
| 20 class CapturingUI(ui.ui): | 20 class CapturingUI(ui.ui): |
| 21 | 21 |
| 22 def __init__(self, *args, **kwds): | 22 def __init__(self, *args, **kwds): |
| 23 super(CapturingUI, self).__init__(*args, **kwds) | 23 super(CapturingUI, self).__init__(*args, **kwds) |
