summaryrefslogtreecommitdiffstats
path: root/subcmds
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds')
-rw-r--r--subcmds/cherry_pick.py3
-rw-r--r--subcmds/smartsync.py2
-rw-r--r--subcmds/version.py2
3 files changed, 4 insertions, 3 deletions
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
16import sys, re 16import re
17import sys
17from command import Command 18from command import Command
18from git_command import GitCommand 19from 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
16from sync import Sync 16from subcmds.sync import Sync
17 17
18class Smartsync(Sync): 18class 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 @@
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