Plugins/VcsPlugins/vcsMercurial/HgClient.py

changeset 4555
861e1741985c
parent 4543
2e6a880670e9
child 4631
5c1a96925da4
equal deleted inserted replaced
4554:f3428ddd577c 4555:861e1741985c
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
11 9
12 try: 10 try:
13 str = unicode 11 str = unicode
14 except NameError: 12 except NameError:
15 pass 13 pass
389 Public method to check, if the server is executing a command. 387 Public method to check, if the server is executing a command.
390 388
391 @return flag indicating the execution of a command (boolean) 389 @return flag indicating the execution of a command (boolean)
392 """ 390 """
393 return self.__commandRunning 391 return self.__commandRunning
392
393 #
394 # eflag: noqa = M702

eric ide

mercurial