Skip to content
Snippets Groups Projects
Commit e4a8643e authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Convert to future print syntax.

parent e19217ec
Branches
Tags
1 merge request!10Move to gtk3 and new command protocol
......@@ -16,6 +16,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from __future__ import division, absolute_import, print_function, unicode_literals
import os
import sys
......@@ -26,7 +27,7 @@ try:
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GObject
except ImportError:
print "ERR: GTK not available"
print("ERR: GTK not available")
sys.exit(1)
import dstat_comm
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment