diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-01-16 16:44:55 +0100 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-01-16 16:44:55 +0100 |
| commit | 3fd547c2d0115ba6ccfb85f307768726c28304ab (patch) | |
| tree | 08ed09171a42980fa276e0e741d7968c10d9b230 | |
| parent | 9e13c9a669959cac7ff4983f36eeede8039cb6eb (diff) | |
| download | python-apt-3fd547c2d0115ba6ccfb85f307768726c28304ab.tar.gz | |
* apt/__init__.py:
- remove the future warning
| -rw-r--r-- | apt/__init__.py | 6 | ||||
| -rw-r--r-- | debian/changelog | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/apt/__init__.py b/apt/__init__.py index 05407aff..e3cfacbe 100644 --- a/apt/__init__.py +++ b/apt/__init__.py @@ -15,6 +15,6 @@ from apt_pkg import SizeToStr, TimeToStr, VersionCompare apt_pkg.init() -import warnings -warnings.warn("apt API not stable yet", FutureWarning) -del warnings +#import warnings +#warnings.warn("apt API not stable yet", FutureWarning) +#del warnings diff --git a/debian/changelog b/debian/changelog index 976c72da..860bacc5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -74,6 +74,8 @@ python-apt (0.7.9~exp1) experimental; urgency=low * setup.py: - build html/ help of the apt and aptsources modules into /usr/share/doc/python-apt/html + * apt/__init__.py: + - remove the future warning -- Michael Vogt <mvo@debian.org> Mon, 15 Dec 2008 14:29:47 +0100 |
