From d1166c9415ed8e6a8729bb6b72084f71adf1cd54 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Tue, 22 Jan 2013 12:58:30 +0000 Subject: Python 3 compatibility --- (limited to 'devbot/plugins/debian.py') diff --git a/devbot/plugins/debian.py b/devbot/plugins/debian.py index 437846d..9598a57 100644 --- a/devbot/plugins/debian.py +++ b/devbot/plugins/debian.py @@ -56,12 +56,12 @@ class PackageManager(interfaces.PackageManager): return if package not in self._cache: - print "Package %s not in cache" % package + print("Package %s not in cache" % package) return installed = self._cache[package].installed if installed is None: - print "Package %s not installed" % package + print("Package %s not installed" % package) return for dependency in installed.dependencies: -- cgit v0.9.1