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