diff options
| author | Michael Vogt <mvo@debian.org> | 2010-09-08 10:54:12 +0200 |
|---|---|---|
| committer | Michael Vogt <mvo@debian.org> | 2010-09-08 10:54:12 +0200 |
| commit | b410a7e17e3a255127ef054b9a867354face49f3 (patch) | |
| tree | ece62abea6f22810a445e424b83c169b3e0cca85 /tests/test_apt_cache.py | |
| parent | 6b6da56c8b1eeee14c5a8a03b206e15fb66baec7 (diff) | |
| download | python-apt-b410a7e17e3a255127ef054b9a867354face49f3.tar.gz | |
fix a bunch of python3.1 releated test failures
Diffstat (limited to 'tests/test_apt_cache.py')
| -rw-r--r-- | tests/test_apt_cache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_apt_cache.py b/tests/test_apt_cache.py index e020b2e5..efa73a4f 100644 --- a/tests/test_apt_cache.py +++ b/tests/test_apt_cache.py @@ -106,10 +106,10 @@ class TestAptCache(unittest.TestCase): def test_apt_update(self): rootdir = "./data/tmp" if os.path.exists(rootdir): - shutil.rmtree(rootdir) + shutil.rmtree(rootdir) try: os.makedirs(os.path.join(rootdir, "var/lib/apt/lists/partial")) - except OSError, e: + except OSError: pass state_dir = os.path.join(rootdir, "var/lib/apt") lists_dir = os.path.join(rootdir, "var/lib/apt/lists") |
