diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2015-08-20 16:45:39 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2015-08-20 16:45:39 +0900 |
commit | f4599a2a3de5025088e4248ea47f62d5edba24fd (patch) | |
tree | 6090440db55a6c10395ace33c8791a218c12154e /subcmds/gitc_init.py | |
parent | 022a1d4e6ec574d6b21febde8d2088393f42c5fb (diff) | |
download | git-repo-f4599a2a3de5025088e4248ea47f62d5edba24fd.tar.gz |
gitc_init: Remove unused import
Also add missing newline at the end of the file.
Change-Id: I206e6c4b033d223eb0ff5824ecbf6fd98c39c918
Diffstat (limited to 'subcmds/gitc_init.py')
-rw-r--r-- | subcmds/gitc_init.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/subcmds/gitc_init.py b/subcmds/gitc_init.py index 03d8cc30..6f5278b2 100644 --- a/subcmds/gitc_init.py +++ b/subcmds/gitc_init.py | |||
@@ -15,7 +15,6 @@ | |||
15 | 15 | ||
16 | from __future__ import print_function | 16 | from __future__ import print_function |
17 | import os | 17 | import os |
18 | import shutil | ||
19 | import sys | 18 | import sys |
20 | 19 | ||
21 | import gitc_utils | 20 | import gitc_utils |
@@ -77,4 +76,4 @@ use for this GITC client. | |||
77 | self.manifest.Override(opt.manifest_file) | 76 | self.manifest.Override(opt.manifest_file) |
78 | gitc_utils.generate_gitc_manifest(self.client_dir, self.manifest) | 77 | gitc_utils.generate_gitc_manifest(self.client_dir, self.manifest) |
79 | print('Please run `cd %s` to view your GITC client.' % | 78 | print('Please run `cd %s` to view your GITC client.' % |
80 | os.path.join(gitc_utils.GITC_FS_ROOT_DIR, opt.gitc_client)) \ No newline at end of file | 79 | os.path.join(gitc_utils.GITC_FS_ROOT_DIR, opt.gitc_client)) |