tortoisehg / stable (http://tortoisehg.bitbucket.org/)

TortoiseHg repository. Main line of development in "default" branch. Releases, bugfixes, and documentation improvements in "stable" branch.

Clone this repository (size: 23.9 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/tortoisehg/stable/
commit 3080: 09acbdb037df
parent 3079: ef2c562de516
branch: default
synch: do not display remote path in status bar The remote path may have plaintext passwords in it. Fixes #353
Steve Borho / sborho
7 months ago

Changed (Δ16 bytes):

raw changeset »

hggtk/synch.py (1 lines added, 1 lines removed)

Up to file-list hggtk/synch.py:

@@ -541,7 +541,7 @@ class SynchDialog(gtk.Window):
541
541
        self.hgthread = hgthread.HgThread(cmdline, parent=self)
542
542
        self.hgthread.start()
543
543
        self.stbar.begin()
544
        self.stbar.set_status_text('hg ' + ' '.join(cmd + [remote_path]))
544
        self.stbar.set_status_text('hg ' + ' '.join(cmd))
545
545
546
546
        self.add_src_to_recent(remote_path)
547
547