diff options
Diffstat (limited to 'subcmds/cherry_pick.py')
-rw-r--r-- | subcmds/cherry_pick.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/subcmds/cherry_pick.py b/subcmds/cherry_pick.py index 7a4dd09e..980720eb 100644 --- a/subcmds/cherry_pick.py +++ b/subcmds/cherry_pick.py | |||
@@ -14,9 +14,11 @@ | |||
14 | 14 | ||
15 | import re | 15 | import re |
16 | import sys | 16 | import sys |
17 | |||
17 | from command import Command | 18 | from command import Command |
18 | from git_command import GitCommand | ||
19 | from error import GitError | 19 | from error import GitError |
20 | from git_command import GitCommand | ||
21 | |||
20 | 22 | ||
21 | CHANGE_ID_RE = re.compile(r"^\s*Change-Id: I([0-9a-f]{40})\s*$") | 23 | CHANGE_ID_RE = re.compile(r"^\s*Change-Id: I([0-9a-f]{40})\s*$") |
22 | 24 | ||