summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/ext/vcs/hg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/ext/vcs/hg.py b/ranger/ext/vcs/hg.py
index 16740307..f1e9dbdb 100644
--- a/ranger/ext/vcs/hg.py
+++ b/ranger/ext/vcs/hg.py
@@ -15,9 +15,9 @@ class Hg(Vcs):
     HEAD = 'tip'
 
     _status_translations = (
-        ('A', 'staged'),
+        ('AR', 'staged'),
         ('M', 'changed'),
-        ('R!', 'deleted'),
+        ('!', 'deleted'),
 
         ('?', 'untracked'),
         ('I', 'ignored'),