diff --git a/debian/changelog b/debian/changelog
index 711ebcae3ebb3a8583b6dd09f22a36ebc68d3a03..2a68800c0229dbab718ac672fe2e96a0417811f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ python-defaults (2.7.5-3) UNRELEASED; urgency=low
   [ Piotr Ożarowski ]
   * Replace /usr/bin/dh_python2 with a shell script that invokes
     dh-python's dh_python2 if debian/control mentions dh-python
+  * dh_python2: warnings about --install-layout=deb and translating
+    dependencies are just an info now
 
  -- Matthias Klose <doko@debian.org>  Mon, 17 Jun 2013 11:09:36 +0200
 
diff --git a/debpython/pydist.py b/debpython/pydist.py
index 13e8f35ea1e164e4086f30108657ce56c29e6c99..94ccaeb185ef65907d5920cc6ae7c4aa9afefec9 100644
--- a/debpython/pydist.py
+++ b/debpython/pydist.py
@@ -172,7 +172,7 @@ def guess_dependency(req, version=None):
 
     # fall back to python-distname
     pname = sensible_pname(name)
-    log.warn('Cannot find installed package that provides %s. '
+    log.info('Cannot find installed package that provides %s. '
              'Using %s as package name. Please add "%s correct_package_name" '
              'line to debian/pydist-overrides to override it if this is incorrect.',
              name, pname, safe_name(name))
diff --git a/dh_python2 b/dh_python2
index e8f4aa12c5f790a23672a33087ca7792f9ece888..1b88b29b379ad71ea2b187b990ad40c99dd6f588 100755
--- a/dh_python2
+++ b/dh_python2
@@ -84,7 +84,7 @@ def fix_locations(package):
                               'found in two locations:\n %s\n %s',
                               ver, location, found_versions[ver])
                     exit(2)
-                log.warn('Python %s should install files in %s. '
+                log.info('Python %s should install files in %s. '
                          'Did you forget "--install-layout=deb"?',
                          ver, sitedir(version))
                 if not isdir(dstdir):