Show More
@@ -834,7 +834,9 b' class ui(object):' | |||
|
834 | 834 | if self.debugflag: |
|
835 | 835 | opts['label'] = opts.get('label', '') + ' ui.debug' |
|
836 | 836 | self.write(*msg, **opts) |
|
837 |
def edit(self, text, user, extra= |
|
|
837 | def edit(self, text, user, extra=None, editform=None): | |
|
838 | if extra is None: | |
|
839 | extra = {} | |
|
838 | 840 | (fd, name) = tempfile.mkstemp(prefix="hg-editor-", suffix=".txt", |
|
839 | 841 | text=True) |
|
840 | 842 | try: |
@@ -866,7 +868,7 b' class ui(object):' | |||
|
866 | 868 | |
|
867 | 869 | return t |
|
868 | 870 | |
|
869 |
def system(self, cmd, environ= |
|
|
871 | def system(self, cmd, environ=None, cwd=None, onerr=None, errprefix=None): | |
|
870 | 872 | '''execute shell command with appropriate output stream. command |
|
871 | 873 | output will be redirected if fout is not stdout. |
|
872 | 874 | ''' |
General Comments 0
You need to be logged in to leave comments.
Login now