Show More
@@ -64,7 +64,6 b'' | |||||
64 | tests/test-pathencode.py requires print_function |
|
64 | tests/test-pathencode.py requires print_function | |
65 | tests/test-run-tests.py not using absolute_import |
|
65 | tests/test-run-tests.py not using absolute_import | |
66 | tests/test-simplemerge.py not using absolute_import |
|
66 | tests/test-simplemerge.py not using absolute_import | |
67 | tests/test-status-inprocess.py not using absolute_import |
|
|||
68 | tests/test-status-inprocess.py requires print_function |
|
67 | tests/test-status-inprocess.py requires print_function | |
69 | tests/test-symlink-os-yes-fs-no.py not using absolute_import |
|
68 | tests/test-symlink-os-yes-fs-no.py not using absolute_import | |
70 | tests/test-trusted.py not using absolute_import |
|
69 | tests/test-trusted.py not using absolute_import |
@@ -1,7 +1,16 b'' | |||||
1 | #!/usr/bin/python |
|
1 | #!/usr/bin/python | |
2 | from mercurial.ui import ui |
|
2 | from __future__ import absolute_import | |
3 |
from mercurial. |
|
3 | from mercurial.ui import ( | |
4 | from mercurial.commands import add, commit, status |
|
4 | ui, | |
|
5 | ) | |||
|
6 | from mercurial.localrepo import ( | |||
|
7 | localrepository, | |||
|
8 | ) | |||
|
9 | from mercurial.commands import ( | |||
|
10 | add, | |||
|
11 | commit, | |||
|
12 | status, | |||
|
13 | ) | |||
5 |
|
14 | |||
6 | u = ui() |
|
15 | u = ui() | |
7 |
|
16 |
General Comments 0
You need to be logged in to leave comments.
Login now