summaryrefslogtreecommitdiffstats
path: root/subcmds/version.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2012-09-11 14:33:51 +0900
committerGustaf Lundh <gustaf.lundh@sonymobile.com>2012-09-18 09:54:57 +0200
commite00aa6b923d28a3c910f85e7726e4ba1d2a9aebd (patch)
tree07c848b81c58e5d4a8e34ecae8606ee5fa62679e /subcmds/version.py
parent86d973d24ec6771504c37eddc535dff8e03c724f (diff)
downloadgit-repo-e00aa6b923d28a3c910f85e7726e4ba1d2a9aebd.tar.gz
Clean up imports
manifest_xml: import `HEAD` and `R_HEADS` from correct module version: import `HEAD` from correct module `HEAD` and `R_HEADS` should be imported from the git_refs module, where they are originally defined, rather than from the project module. repo: remove unused import of readline cherry_pick: import standard modules on separate lines smartsync: import subcmd modules explicitly from subcmd Use: `import re import sys` and `from subcmds.sync import Sync` Instead of: `import sys, re` and `from sync import Sync` Change-Id: Ie10dd6832710939634c4f5c86b9ba5a9cd6fc92e
Diffstat (limited to 'subcmds/version.py')
-rw-r--r--subcmds/version.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/version.py b/subcmds/version.py
index 03195f88..243e3676 100644
--- a/subcmds/version.py
+++ b/subcmds/version.py
@@ -16,7 +16,7 @@
16import sys 16import sys
17from command import Command, MirrorSafeCommand 17from command import Command, MirrorSafeCommand
18from git_command import git 18from git_command import git
19from project import HEAD 19from git_refs import HEAD
20 20
21class Version(Command, MirrorSafeCommand): 21class Version(Command, MirrorSafeCommand):
22 wrapper_version = None 22 wrapper_version = None