1
0
Fork 0

retrying on phab.update_interfaces()

This commit is contained in:
Christian Kühnel 2020-02-19 12:08:18 +01:00
parent a2aa628706
commit 63ad2d1be6

View file

@ -40,7 +40,7 @@ class PhabTalk:
self._phab = None # type: Optional[Phabricator] self._phab = None # type: Optional[Phabricator]
if not dryrun: if not dryrun:
self._phab = Phabricator(token=token, host=host) self._phab = Phabricator(token=token, host=host)
self._phab.update_interfaces() _try_call(self._phab.update_interfaces)
@property @property
def dryrun(self): def dryrun(self):