# HG changeset patch # User Augie Fackler # Date 1230139070 21600 # Node ID 91c818377703d0c5d10456c9d5af1f45a70dbef4 # Parent 91541523ea5cf335a68d63c7bced3aeb3524c244 Import cleanup thanks to pyflakes. diff --git a/fetch_command.py b/fetch_command.py --- a/fetch_command.py +++ b/fetch_command.py @@ -1,8 +1,6 @@ import cStringIO import re import os -import shutil -import tempfile from mercurial import patch from mercurial import node diff --git a/tag_repo.py b/tag_repo.py --- a/tag_repo.py +++ b/tag_repo.py @@ -1,5 +1,3 @@ -import pickle - from mercurial import node import hg_delta_editor diff --git a/tests/test_fetch_branches.py b/tests/test_fetch_branches.py --- a/tests/test_fetch_branches.py +++ b/tests/test_fetch_branches.py @@ -1,4 +1,3 @@ -import sys import unittest from mercurial import node diff --git a/tests/test_fetch_exec.py b/tests/test_fetch_exec.py --- a/tests/test_fetch_exec.py +++ b/tests/test_fetch_exec.py @@ -1,4 +1,3 @@ -import sys import unittest from mercurial import node diff --git a/tests/test_tags.py b/tests/test_tags.py --- a/tests/test_tags.py +++ b/tests/test_tags.py @@ -6,7 +6,6 @@ from mercurial import ui import test_util -import svncommand import tag_repo class TestTags(test_util.TestBase):