diff options
Diffstat (limited to 'subcmds/gitc_init.py')
-rw-r--r-- | subcmds/gitc_init.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/gitc_init.py b/subcmds/gitc_init.py index 7ecfdcac..89472edb 100644 --- a/subcmds/gitc_init.py +++ b/subcmds/gitc_init.py | |||
@@ -47,7 +47,7 @@ use for this GITC client. | |||
47 | """ | 47 | """ |
48 | 48 | ||
49 | def _Options(self, p): | 49 | def _Options(self, p): |
50 | super(GitcInit, self)._Options(p, gitc_init=True) | 50 | super()._Options(p, gitc_init=True) |
51 | g = p.add_option_group('GITC options') | 51 | g = p.add_option_group('GITC options') |
52 | g.add_option('-f', '--manifest-file', | 52 | g.add_option('-f', '--manifest-file', |
53 | dest='manifest_file', | 53 | dest='manifest_file', |
@@ -64,7 +64,7 @@ use for this GITC client. | |||
64 | sys.exit(1) | 64 | sys.exit(1) |
65 | self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(), | 65 | self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(), |
66 | gitc_client) | 66 | gitc_client) |
67 | super(GitcInit, self).Execute(opt, args) | 67 | super().Execute(opt, args) |
68 | 68 | ||
69 | manifest_file = self.manifest.manifestFile | 69 | manifest_file = self.manifest.manifestFile |
70 | if opt.manifest_file: | 70 | if opt.manifest_file: |