src/eric7/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditEditor.py

branch
eric7
changeset 11090
f5f5f5803935
parent 10926
9ef616cd220d
child 11148
15e30f0c76a8
equal deleted inserted replaced
11089:ce73f15bbea5 11090:f5f5f5803935
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 # Copyright (c) 2016 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2016 - 2025 Detlev Offenbach <detlev@die-offenbachs.de>
5 # 5 #
6 6
7 """ 7 """
8 Module implementing the main script for histedit. 8 Module implementing the main script for histedit.
9 9
26 from eric7.__version__ import Version 26 from eric7.__version__ import Version
27 27
28 # 1. create the argument parser 28 # 1. create the argument parser
29 parser = argparse.ArgumentParser( 29 parser = argparse.ArgumentParser(
30 description="Graphical editor for the Mercurial 'histedit' command.", 30 description="Graphical editor for the Mercurial 'histedit' command.",
31 epilog="Copyright (c) 2016 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>.", 31 epilog="Copyright (c) 2016 - 2025 Detlev Offenbach <detlev@die-offenbachs.de>.",
32 ) 32 )
33 33
34 # 2. add the arguments 34 # 2. add the arguments
35 parser.add_argument( 35 parser.add_argument(
36 "-V", 36 "-V",

eric ide

mercurial