pylint: Don't use space after 'print'
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
a808bd6692
commit
ab4fd40e96
6
setup.py
6
setup.py
|
@ -234,9 +234,9 @@ class my_install(install):
|
|||
print "Using prefix from 'configure': %s" % cliconfig.prefix
|
||||
self.prefix = cliconfig.prefix
|
||||
elif self.prefix != cliconfig.prefix:
|
||||
print ("Install prefix=%s doesn't match configure prefix=%s\n"
|
||||
"Pass matching --prefix to 'setup.py configure'" %
|
||||
(self.prefix, cliconfig.prefix))
|
||||
print("Install prefix=%s doesn't match configure prefix=%s\n"
|
||||
"Pass matching --prefix to 'setup.py configure'" %
|
||||
(self.prefix, cliconfig.prefix))
|
||||
sys.exit(1)
|
||||
|
||||
install.finalize_options(self)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (C) 2011, 2013 Red Hat, Inc.
|
||||
# Copyright (C) 2011, 2013, 2014 Red Hat, Inc.
|
||||
# Copyright (C) 2011 Cole Robinson <crobinso@redhat.com>
|
||||
#
|
||||
# Python implementation of autodrawer, originally found in vinagre sources:
|
||||
|
@ -37,8 +37,8 @@ from virtManager import uiutil
|
|||
|
||||
def rect_print(name, rect):
|
||||
# For debugging
|
||||
print ("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
(name, rect.height, rect.width, rect.x, rect.y))
|
||||
print("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
(name, rect.height, rect.width, rect.x, rect.y))
|
||||
|
||||
|
||||
class OverBox(Gtk.Box):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (C) 2013 Red Hat, Inc.
|
||||
# Copyright (C) 2013, 2014 Red Hat, Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
@ -28,8 +28,8 @@ from gi.repository import Gtk
|
|||
|
||||
def rect_print(name, rect):
|
||||
# For debugging
|
||||
print ("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
(name, rect.height, rect.width, rect.x, rect.y))
|
||||
print("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
(name, rect.height, rect.width, rect.x, rect.y))
|
||||
|
||||
|
||||
def _line_helper(cairo_ct, x, y, w, h, points, for_fill=False):
|
||||
|
|
Loading…
Reference in New Issue