This commit is contained in:
ingvar1995
2016-03-17 23:58:38 +03:00
parent 42703c9bc2
commit 6d56b2aa5b
2 changed files with 2 additions and 2 deletions

View File

@ -279,7 +279,7 @@ class MainWindow(QtGui.QMainWindow):
def send_file(self):
if self.profile.is_active_online(): # active friend exists and online
name = QtGui.QFileDialog.getOpenFileName(self, 'Choose file')
if name:
if name[0]:
self.profile.send_file(name[0])
# -----------------------------------------------------------------------------------------------------------------