src/eric7/Plugins/PluginVcsMercurial.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
5 5
6 """ 6 """
7 Module implementing the Mercurial version control plugin. 7 Module implementing the Mercurial version control plugin.
8 """ 8 """
9 9
10 import contextlib
10 import os 11 import os
11 import contextlib 12
12 13 from PyQt6.QtCore import QByteArray, QCoreApplication, QObject
13 from PyQt6.QtCore import QObject, QCoreApplication, QByteArray 14
14 15 from eric7 import Preferences, Utilities
15 from eric7.EricWidgets.EricApplication import ericApp 16 from eric7.EricWidgets.EricApplication import ericApp
16
17 from eric7 import Preferences, Utilities
18
19 from eric7.Preferences.Shortcuts import readShortcuts
20
21 from eric7.Plugins.VcsPlugins.vcsMercurial.HgUtilities import ( 17 from eric7.Plugins.VcsPlugins.vcsMercurial.HgUtilities import (
22 getConfigPath, 18 getConfigPath,
23 getHgExecutable, 19 getHgExecutable,
24 ) 20 )
25 21 from eric7.Preferences.Shortcuts import readShortcuts
26 from eric7.UI import Info 22 from eric7.UI import Info
27 23
28 # Start-Of-Header 24 # Start-Of-Header
29 name = "Mercurial Plugin" 25 name = "Mercurial Plugin"
30 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 26 author = "Detlev Offenbach <detlev@die-offenbachs.de>"

eric ide

mercurial