comparison: Plugins/VcsPlugins/vcsMercurial/HgClient.py
Plugins/VcsPlugins/vcsMercurial/HgClient.py
- branch
- 6_1_x
- changeset 4541
- e8ddd9d76414
- parent 4471
- 2dedc0c4a8fa
- child 4555
- 861e1741985c
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing an interface to the Mercurial command server. |
7 Module implementing an interface to the Mercurial command server. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals |
9 |
11 |
10 try: |
12 try: |
11 str = unicode |
13 str = unicode |
12 except NameError: |
14 except NameError: |
13 pass |
15 pass |