diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-06 09:45:16 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-06 09:45:16 +0200 |
| commit | b94455e7afd0e08ce1a8aab890dbee0d42566d7b (patch) | |
| tree | 64f7e5bae5623eb97c8df3e05c127fd4a569f5d3 /tests/test_debfile.py | |
| parent | dd86db9ddb22b43867b5b4dc211f4440dec7aa6a (diff) | |
| download | python-apt-b94455e7afd0e08ce1a8aab890dbee0d42566d7b.tar.gz | |
fix debfile to work with py3, update tests
Diffstat (limited to 'tests/test_debfile.py')
| -rw-r--r-- | tests/test_debfile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_debfile.py b/tests/test_debfile.py index 02e25117..56bbba9f 100644 --- a/tests/test_debfile.py +++ b/tests/test_debfile.py @@ -10,8 +10,9 @@ import os import logging import unittest +from test_all import get_library_dir import sys -sys.path.insert(0, "..") +sys.path.insert(0, get_library_dir()) import apt.debfile |
