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

branch
eric7
changeset 10439
21c28b0f9e41
parent 10303
ee1aadab1215
child 10716
11cdcc824469
equal deleted inserted replaced
10438:4cd7e5a8b3cf 10439:21c28b0f9e41
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 # Copyright (c) 2016 - 2023 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2016 - 2024 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
32 from eric7.UI.Info import Version 32 from eric7.UI.Info import Version
33 33
34 # 1. create the argument parser 34 # 1. create the argument parser
35 parser = argparse.ArgumentParser( 35 parser = argparse.ArgumentParser(
36 description="Graphical editor for the Mercurial 'histedit' command.", 36 description="Graphical editor for the Mercurial 'histedit' command.",
37 epilog="Copyright (c) 2016 - 2023 Detlev Offenbach <detlev@die-offenbachs.de>.", 37 epilog="Copyright (c) 2016 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>.",
38 ) 38 )
39 39
40 # 2. add the arguments 40 # 2. add the arguments
41 parser.add_argument( 41 parser.add_argument(
42 "-V", 42 "-V",

eric ide

mercurial