diff options
-rw-r--r-- | manifest_xml.py | 3 | ||||
-rwxr-xr-x | repo | 1 | ||||
-rw-r--r-- | subcmds/cherry_pick.py | 3 | ||||
-rw-r--r-- | subcmds/smartsync.py | 2 | ||||
-rw-r--r-- | subcmds/version.py | 2 |
5 files changed, 6 insertions, 5 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 8e9efd13..f4f6a755 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -21,7 +21,8 @@ import urlparse | |||
21 | import xml.dom.minidom | 21 | import xml.dom.minidom |
22 | 22 | ||
23 | from git_config import GitConfig | 23 | from git_config import GitConfig |
24 | from project import RemoteSpec, Project, MetaProject, R_HEADS, HEAD | 24 | from git_refs import R_HEADS, HEAD |
25 | from project import RemoteSpec, Project, MetaProject | ||
25 | from error import ManifestParseError | 26 | from error import ManifestParseError |
26 | 27 | ||
27 | MANIFEST_FILE_NAME = 'manifest.xml' | 28 | MANIFEST_FILE_NAME = 'manifest.xml' |
@@ -88,7 +88,6 @@ REPO_MAIN = S_repo + '/main.py' # main script | |||
88 | import optparse | 88 | import optparse |
89 | import os | 89 | import os |
90 | import re | 90 | import re |
91 | import readline | ||
92 | import subprocess | 91 | import subprocess |
93 | import sys | 92 | import sys |
94 | import urllib2 | 93 | import urllib2 |
diff --git a/subcmds/cherry_pick.py b/subcmds/cherry_pick.py index 7890af4d..7a6d4c20 100644 --- a/subcmds/cherry_pick.py +++ b/subcmds/cherry_pick.py | |||
@@ -13,7 +13,8 @@ | |||
13 | # See the License for the specific language governing permissions and | 13 | # See the License for the specific language governing permissions and |
14 | # limitations under the License. | 14 | # limitations under the License. |
15 | 15 | ||
16 | import sys, re | 16 | import re |
17 | import sys | ||
17 | from command import Command | 18 | from command import Command |
18 | from git_command import GitCommand | 19 | from git_command import GitCommand |
19 | 20 | ||
diff --git a/subcmds/smartsync.py b/subcmds/smartsync.py index 1edbd35b..e164859f 100644 --- a/subcmds/smartsync.py +++ b/subcmds/smartsync.py | |||
@@ -13,7 +13,7 @@ | |||
13 | # See the License for the specific language governing permissions and | 13 | # See the License for the specific language governing permissions and |
14 | # limitations under the License. | 14 | # limitations under the License. |
15 | 15 | ||
16 | from sync import Sync | 16 | from subcmds.sync import Sync |
17 | 17 | ||
18 | class Smartsync(Sync): | 18 | class Smartsync(Sync): |
19 | common = True | 19 | common = True |
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 @@ | |||
16 | import sys | 16 | import sys |
17 | from command import Command, MirrorSafeCommand | 17 | from command import Command, MirrorSafeCommand |
18 | from git_command import git | 18 | from git_command import git |
19 | from project import HEAD | 19 | from git_refs import HEAD |
20 | 20 | ||
21 | class Version(Command, MirrorSafeCommand): | 21 | class Version(Command, MirrorSafeCommand): |
22 | wrapper_version = None | 22 | wrapper_version = None |