hgext/uncommit.py
changeset 47432 7f7457f84311
parent 47428 54849b65dc5f
child 48581 4f01821fa0ec
equal deleted inserted replaced
47431:fca9c63f160e 47432:7f7457f84311
   152 
   152 
   153     If no files are specified, the commit will be pruned, unless --keep is
   153     If no files are specified, the commit will be pruned, unless --keep is
   154     given.
   154     given.
   155     """
   155     """
   156     cmdutil.check_note_size(opts)
   156     cmdutil.check_note_size(opts)
       
   157     cmdutil.resolve_commit_options(ui, opts)
   157     opts = pycompat.byteskwargs(opts)
   158     opts = pycompat.byteskwargs(opts)
   158     cmdutil.resolvecommitoptions(ui, opts)
       
   159 
   159 
   160     with repo.wlock(), repo.lock():
   160     with repo.wlock(), repo.lock():
   161 
   161 
   162         st = repo.status()
   162         st = repo.status()
   163         m, a, r, d = st.modified, st.added, st.removed, st.deleted
   163         m, a, r, d = st.modified, st.added, st.removed, st.deleted