Skip to content

Commit

Permalink
fixing spaces in internationalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
emorrp1 committed Apr 16, 2009
1 parent b6fbd63 commit a3d3527
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions usr/lib/linuxmint/mintUpload/mintUpload.py
Expand Up @@ -205,7 +205,7 @@ def _ftp(self):
ftp = ftplib.FTP()
ftp.connect(selected_service['host'], selected_service['port'])
ftp.login(selected_service['user'], selected_service['pass'])
statusbar.push(context_id, selected_service['type'] + _(" connection successfully established"))
statusbar.push(context_id, selected_service['type'] + " " + _("connection successfully established"))

# Create full path
for dir in selected_service['path'].split("/"):
Expand Down Expand Up @@ -249,7 +249,7 @@ def _sftp(self):
transport.connect(username = selected_service['user'], password = selected_service['pass'])
else:
transport.connect(username = selected_service['user'], pkey = rsa_key)
statusbar.push(context_id, selected_service['type'] + _(" connection successfully established"))
statusbar.push(context_id, selected_service['type'] + " " + _("connection successfully established"))

# Create full remote path
path = selected_service['path']
Expand Down Expand Up @@ -282,7 +282,7 @@ def _scp(self):
scp.expect('.*password:*')
scp.sendline(selected_service['pass'])

statusbar.push(context_id, selected_service['type'] + _(" connection successfully established"))
statusbar.push(context_id, selected_service['type'] + " " + _("connection successfully established"))

scp.timeout = None
received = scp.expect(['.*100\%.*','.*password:.*',pexpect.EOF])
Expand Down

0 comments on commit a3d3527

Please sign in to comment.