summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-01-16 16:44:55 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2009-01-16 16:44:55 +0100
commit3fd547c2d0115ba6ccfb85f307768726c28304ab (patch)
tree08ed09171a42980fa276e0e741d7968c10d9b230
parent9e13c9a669959cac7ff4983f36eeede8039cb6eb (diff)
downloadpython-apt-3fd547c2d0115ba6ccfb85f307768726c28304ab.tar.gz
* apt/__init__.py:
- remove the future warning
-rw-r--r--apt/__init__.py6
-rw-r--r--debian/changelog2
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