Show More
@@ -80,10 +80,10 b' def wrapui(ui):' | |||
|
80 | 80 | if src is None: |
|
81 | 81 | self._partialinit() |
|
82 | 82 | else: |
|
83 |
self._bbfp = src |
|
|
83 | self._bbfp = getattr(src, '_bbfp', None) | |
|
84 | 84 | self._bbinlog = False |
|
85 |
self._bbrepo = src |
|
|
86 |
self._bbvfs = src |
|
|
85 | self._bbrepo = getattr(src, '_bbrepo', None) | |
|
86 | self._bbvfs = getattr(src, '_bbvfs', None) | |
|
87 | 87 | |
|
88 | 88 | def _partialinit(self): |
|
89 | 89 | if util.safehasattr(self, '_bbvfs'): |
General Comments 0
You need to be logged in to leave comments.
Login now