equal
deleted
inserted
replaced
889 if not (tmpl or style): |
889 if not (tmpl or style): |
890 tmpl = ui.config('ui', 'logtemplate') |
890 tmpl = ui.config('ui', 'logtemplate') |
891 if tmpl: |
891 if tmpl: |
892 tmpl = templater.parsestring(tmpl) |
892 tmpl = templater.parsestring(tmpl) |
893 else: |
893 else: |
894 style = ui.config('ui', 'style') |
894 style = util.expandpath(ui.config('ui', 'style', '')) |
895 |
895 |
896 if not (tmpl or style): |
896 if not (tmpl or style): |
897 return changeset_printer(ui, repo, patch, opts, buffered) |
897 return changeset_printer(ui, repo, patch, opts, buffered) |
898 |
898 |
899 mapfile = None |
899 mapfile = None |