Skip to content

Commit

Permalink
#494 fix logging warning
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@11193 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Nov 12, 2015
1 parent 597dc9b commit 0ce60b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/ui_client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0ce60b0

Please sign in to comment.