Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

stable sync: add missing argument in readauthforui (see hg 0593e8f81c71)

Changeset bb7d19eb4ddb

Parent b92345fcc4d0

by André Sintzoff

Changes to one file · Browse files at bb7d19eb4ddb Showing diff from parent b92345fcc4d0 Diff from another changeset...

 
686
687
688
689
 
690
691
692
 
1198
1199
1200
1201
 
1202
1203
1204
 
686
687
688
 
689
690
691
692
 
1198
1199
1200
 
1201
1202
1203
1204
@@ -686,7 +686,7 @@
  cmdline.append('--insecure')   if user:   cleanurl = hglib.removeauth(cururl) - res = hglib.readauthforuri(self.repo.ui, cleanurl) + res = hglib.readauthforuri(self.repo.ui, cleanurl, user)   if res:   group, auth = res   if auth.get('username'): @@ -1198,7 +1198,7 @@
    # if the already user has an [auth] configuration for this URL, use it   cleanurl = hglib.removeauth(origurl) - res = hglib.readauthforuri(repo.ui, cleanurl) + res = hglib.readauthforuri(repo.ui, cleanurl, user)   if res:   self.alias, auth = res   else: