hgext/fsmonitor/watchmanclient.py
changeset 30649 b0a0f7b9ed90
parent 28433 3b67f27bb908
child 41968 57264906a996
--- a/hgext/fsmonitor/watchmanclient.py	Wed Dec 21 13:44:15 2016 -0800
+++ b/hgext/fsmonitor/watchmanclient.py	Wed Dec 21 13:51:34 2016 -0800
@@ -87,7 +87,7 @@
                     useImmutableBser=True)
             return self._watchmanclient.query(*watchmanargs)
         except pywatchman.CommandError as ex:
-            if ex.msg.startswith('unable to resolve root'):
+            if 'unable to resolve root' in ex.msg:
                 raise WatchmanNoRoot(self._root, ex.msg)
             raise Unavailable(ex.msg)
         except pywatchman.WatchmanError as ex: