hgext/shelve.py
changeset 22184 fb8065de47b0
parent 22057 445472225ccd
child 22199 b3e51675f98e
--- a/hgext/shelve.py	Fri Aug 15 10:47:03 2014 -0500
+++ b/hgext/shelve.py	Fri Aug 15 10:54:15 2014 -0500
@@ -413,9 +413,11 @@
         for file in u:
             if file in files:
                 util.rename(file, file + ".orig")
+        ui.pushbuffer(True)
         cmdutil.revert(ui, repo, shelvectx, repo.dirstate.parents(),
                        *pathtofiles(repo, files),
                        **{'no_backup': True})
+        ui.popbuffer()
     finally:
         ui.quiet = oldquiet