| commit 267: | 7814c26758a2 |
| parent 266: | 5347d8c94021 |
| branch: | default |
remove unused imports
Changed (Δ114 bytes):
raw changeset »
hggit/git_handler.py (1 lines added, 6 lines removed)
Up to file-list hggit/git_handler.py:
1 |
import os, |
|
1 |
import os, math, urllib, re |
|
2 |
2 |
import toposort |
3 |
3 |
|
4 |
4 |
from dulwich.errors import HangupException |
| … | … | @@ -12,11 +12,6 @@ from mercurial.i18n import _ |
12 |
12 |
from mercurial.node import hex, bin, nullid |
13 |
13 |
from mercurial import context, util as hgutil |
14 |
14 |
|
15 |
try: |
|
16 |
from mercurial.error import RepoError |
|
17 |
except ImportError: |
|
18 |
from mercurial.repo import RepoError |
|
19 |
||
20 |
15 |
|
21 |
16 |
class GitHandler(object): |
22 |
17 |
