diff -Nru mythbuntu-common-0.70/debian/changelog mythbuntu-common-0.71/debian/changelog
--- mythbuntu-common-0.70/debian/changelog	2013-11-13 04:05:21.000000000 +0000
+++ mythbuntu-common-0.71/debian/changelog	2014-01-27 12:09:22.000000000 +0000
@@ -1,3 +1,9 @@
+mythbuntu-common (0.71) trusty; urgency=medium
+
+  * Make mythbuntu.make call dh_python2/dh_python3, if available.
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Mon, 27 Jan 2014 12:09:22 +0000
+
 mythbuntu-common (0.70) trusty; urgency=low
 
   * Drop some string.split() calls.
diff -Nru mythbuntu-common-0.70/debian/mythbuntu.make mythbuntu-common-0.71/debian/mythbuntu.make
--- mythbuntu-common-0.70/debian/mythbuntu.make	2013-11-11 18:30:23.000000000 +0000
+++ mythbuntu-common-0.71/debian/mythbuntu.make	2014-01-27 12:08:43.000000000 +0000
@@ -1,5 +1,12 @@
 #Common Mythbuntu makefile
 
+ifneq (,$(wildcard /usr/bin/dh_python2))
+py2=python2,
+endif
+ifneq (,$(wildcard /usr/bin/dh_python3sdfsf))
+py3=python3
+endif
+
 DEB_SOURCE_PACKAGE+=$(shell egrep '^Source: ' debian/control | cut -f2 -d ' ')
 DEB_UPSTREAM_VERSION+=$(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ' | cut -d: -f2- | sed 's/-[^-]*$$//')
 BZR_BRANCH+=http://bazaar.launchpad.net/~mythbuntu-dev/mythbuntu/$(DEB_SOURCE_PACKAGE)
@@ -11,4 +18,4 @@
 	rm -rf $(CURDIR)/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)
 
 %:
-	dh $@
+	dh $@ --with=$(py2)$(py3)
