Show More
@@ -107,6 +107,8 b' class ui(object):' | |||
|
107 | 107 | self._trustusers = set() |
|
108 | 108 | self._trustgroups = set() |
|
109 | 109 | self.callhooks = True |
|
110 | # Insecure server connections requested. | |
|
111 | self.insecureconnections = False | |
|
110 | 112 | |
|
111 | 113 | if src: |
|
112 | 114 | self.fout = src.fout |
@@ -120,6 +122,7 b' class ui(object):' | |||
|
120 | 122 | self._trustgroups = src._trustgroups.copy() |
|
121 | 123 | self.environ = src.environ |
|
122 | 124 | self.callhooks = src.callhooks |
|
125 | self.insecureconnections = src.insecureconnections | |
|
123 | 126 | self.fixconfig() |
|
124 | 127 | else: |
|
125 | 128 | self.fout = sys.stdout |
General Comments 0
You need to be logged in to leave comments.
Login now