mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-03-09 08:58:27 +03:00
pylint: Don't use space after 'print'
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
a808bd6692
commit
ab4fd40e96
2
setup.py
2
setup.py
@ -234,7 +234,7 @@ 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"
|
||||
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)
|
||||
|
@ -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,7 +37,7 @@ from virtManager import uiutil
|
||||
|
||||
def rect_print(name, rect):
|
||||
# For debugging
|
||||
print ("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
print("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
(name, rect.height, rect.width, rect.x, rect.y))
|
||||
|
||||
|
||||
|
@ -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,7 +28,7 @@ from gi.repository import Gtk
|
||||
|
||||
def rect_print(name, rect):
|
||||
# For debugging
|
||||
print ("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
print("%s: height=%d, width=%d, x=%d, y=%d" %
|
||||
(name, rect.height, rect.width, rect.x, rect.y))
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user