summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/ext/vcs/bzr.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/ranger/ext/vcs/bzr.py b/ranger/ext/vcs/bzr.py
index 49ce8b34..aa7112dc 100644
--- a/ranger/ext/vcs/bzr.py
+++ b/ranger/ext/vcs/bzr.py
@@ -117,21 +117,7 @@ class Bzr(Vcs):
         if not self._remote_url():
             return 'none'
 
-        # XXX: Find a local solution
-        ahead = behind = False
-        try:
-            self._bzr(['missing', '--mine-only'], catchout=False)
-        except VcsError:
-            ahead = True
-        try:
-            self._bzr(['missing', '--theirs-only'], catchout=False)
-        except VcsError:
-            behind = True
-
-        if ahead:
-            return 'diverged' if behind else 'ahead'
-        else:
-            return 'behind' if behind else 'sync'
+        return 'unknown'
 
     def data_branch(self):
         try: