Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

reporegistry: hide passwords when displaying paths

Changeset 75230d5385d2

Parent f7cef0017287

by Adrian Buehlmann

Changes to one file · Browse files at 75230d5385d2 Showing diff from parent f7cef0017287 Diff from another changeset...

 
8
9
10
11
 
12
13
14
 
270
271
272
273
 
 
274
275
276
 
8
9
10
 
11
12
13
14
 
270
271
272
 
273
274
275
276
277
@@ -8,7 +8,7 @@
 import sys  import os   -from mercurial import hg +from mercurial import hg, url    from PyQt4 import QtCore, QtGui   @@ -270,7 +270,8 @@
  if column == 0:   return QVariant(self._alias)   elif column == 1: - return QVariant(self._path) + path = url.hidepassword(self._path) + return QVariant(path)   return QVariant()     def menulist(self):