4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing the VCS status monitor thread class for Mercurial. |
7 Module implementing the VCS status monitor thread class for Mercurial. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
|
11 try: |
|
12 str = unicode |
|
13 except (NameError): |
|
14 pass |
9 |
15 |
10 from PyQt4.QtCore import QProcess |
16 from PyQt4.QtCore import QProcess |
11 |
17 |
12 from VCS.StatusMonitorThread import VcsStatusMonitorThread |
18 from VCS.StatusMonitorThread import VcsStatusMonitorThread |
13 |
19 |