pylint fixes.
This commit is contained in:
parent
03fbadd3c4
commit
7db810d5af
|
@ -1955,18 +1955,20 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
self.ui.comboBoxSendFrom.setCurrentIndex(0)
|
self.ui.comboBoxSendFrom.setCurrentIndex(0)
|
||||||
|
|
||||||
def click_pushButtonAttach(self):
|
def click_pushButtonAttach(self):
|
||||||
|
"""Launch a file picker and append to the current message the base64-encoded contents of the chosen file."""
|
||||||
filename = QtGui.QFileDialog.getOpenFileName(self, "Attach File")
|
filename = QtGui.QFileDialog.getOpenFileName(self, "Attach File")
|
||||||
if filename:
|
if filename:
|
||||||
f = open(filename, 'rb')
|
f = open(filename, 'rb')
|
||||||
data = f.read()
|
data = f.read()
|
||||||
f.close()
|
f.close()
|
||||||
data_b64 = base64.b64encode(data)
|
data_b64 = base64.b64encode(data)
|
||||||
html_data = '<a href="data:application/octet-stream;base64,' + data_b64 + '">' + os.path.basename(unicode(filename)) + '</a>'
|
html_data = '<a href="data:application/octet-stream;base64,' + data_b64 + '">' \
|
||||||
|
+ os.path.basename(unicode(filename)) + '</a>'
|
||||||
if self.ui.tabWidgetSend.currentIndex() == self.ui.tabWidgetSend.indexOf(self.ui.sendDirect):
|
if self.ui.tabWidgetSend.currentIndex() == self.ui.tabWidgetSend.indexOf(self.ui.sendDirect):
|
||||||
#send direct message
|
# send direct message
|
||||||
self.ui.textEditMessage.insertPlainText(html_data)
|
self.ui.textEditMessage.insertPlainText(html_data)
|
||||||
else:
|
else:
|
||||||
#send broadcast message
|
# send broadcast message
|
||||||
self.ui.textEditMessageBroadcast.insertPlainText(html_data)
|
self.ui.textEditMessageBroadcast.insertPlainText(html_data)
|
||||||
|
|
||||||
def click_pushButtonSend(self):
|
def click_pushButtonSend(self):
|
||||||
|
|
|
@ -5,7 +5,8 @@ src/bitmessageqt/messageview.py
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from PyQt4 import QtCore, QtGui
|
from PyQt4 import QtCore, QtGui
|
||||||
import re, base64
|
import re
|
||||||
|
import base64
|
||||||
|
|
||||||
from safehtmlparser import SafeHTMLParser
|
from safehtmlparser import SafeHTMLParser
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user