hgweb: partially revert 4ec58b157265
authorGiorgos Keramidas <keramida@ceid.upatras.gr>
Mon, 14 Aug 2006 16:06:37 +0300
changeset 2900 26c37ebda1bb
parent 2885 bd29a3067b97
child 2901 9826af4841ef
hgweb: partially revert 4ec58b157265 The change from self.repo.ui.diffopts() to ui.diffopts() causes a traceback when the diff of a changeset should be displayed in the web interface. Revert to self.repo.ui.diffopts() for now.
mercurial/hgweb/hgweb_mod.py
--- a/mercurial/hgweb/hgweb_mod.py	Sun Aug 13 17:03:33 2006 -0700
+++ b/mercurial/hgweb/hgweb_mod.py	Mon Aug 14 16:06:37 2006 +0300
@@ -134,7 +134,7 @@
             modified, added, removed = map(lambda x: filterfiles(files, x),
                                            (modified, added, removed))
 
-        diffopts = ui.diffopts()
+        diffopts = self.repo.ui.diffopts()
         for f in modified:
             to = r.file(f).read(mmap1[f])
             tn = r.file(f).read(mmap2[f])