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 /apt | |
| parent | 9e13c9a669959cac7ff4983f36eeede8039cb6eb (diff) | |
| download | python-apt-3fd547c2d0115ba6ccfb85f307768726c28304ab.tar.gz | |
* apt/__init__.py:
- remove the future warning
Diffstat (limited to 'apt')
| -rw-r--r-- | apt/__init__.py | 6 |
1 files changed, 3 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 |
