From 0ce60b08333ce065339348748df6b6cc79d19f9a Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 12 Nov 2015 04:53:49 +0000 Subject: [PATCH] #494 fix logging warning git-svn-id: https://xpra.org/svn/Xpra/trunk@11193 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/xpra/client/ui_client_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpra/client/ui_client_base.py b/src/xpra/client/ui_client_base.py index c130a76ac7..3a5f69b435 100644 --- a/src/xpra/client/ui_client_base.py +++ b/src/xpra/client/ui_client_base.py @@ -1077,7 +1077,7 @@ def send_file(self, filename, data, filesize, openit): if filesize>self.file_size_limit*1024*1024: filelog.warn("Warning: cannot upload the file '%s'", basefilename) filelog.warn(" this file is too large: %sB", std_unit(filesize, unit=1024)) - filelog.warn(" the file size limit is %iMB", self, self.file_size_limit) + filelog.warn(" the file size limit is %iMB", self.file_size_limit) return False if filesize>self.server_file_size_limit*1024*1024: filelog.warn("Warning: cannot upload the file '%s'", basefilename)