~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to shelf.py

  • Committer: Jelmer Vernooij
  • Date: 2011-08-29 17:00:45 UTC
  • mto: This revision was merged to the branch mainline in revision 778.
  • Revision ID: jelmer@samba.org-20110829170045-j1yns6q2e6jb236i
Remove unused imports and fix two imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import os
2
2
import sys
3
 
import subprocess
4
3
from datetime import datetime
5
 
from errors import CommandError, PatchFailed, PatchInvokeError
 
4
from errors import CommandError, PatchFailed
6
5
from hunk_selector import ShelveHunkSelector, UnshelveHunkSelector
7
6
from patch import run_patch
8
 
from patchsource import PatchSource, FilePatchSource
 
7
from patchsource import FilePatchSource
9
8
from bzrlib.osutils import rename
10
9
 
11
10
class Shelf(object):