[Zope-Checkins] SVN: Zope/branches/2.12/src/Products/Five/browser/absoluteurl.py Fix _getContextName; does anyone test this stuff?

2010-02-26 Thread Martijn Pieters
Log message for revision 109473:
  Fix _getContextName; does anyone test this stuff?

Changed:
  U   Zope/branches/2.12/src/Products/Five/browser/absoluteurl.py

-=-
Modified: Zope/branches/2.12/src/Products/Five/browser/absoluteurl.py
===
--- Zope/branches/2.12/src/Products/Five/browser/absoluteurl.py 2010-02-26 
15:23:23 UTC (rev 109472)
+++ Zope/branches/2.12/src/Products/Five/browser/absoluteurl.py 2010-02-26 
16:46:18 UTC (rev 109473)
@@ -62,7 +62,7 @@
 def _getContextName(self, context):
 if getattr(context, 'getId', None) is not None:
 return context.getId()
-getattr(context, '__name__', None)
+return getattr(context, '__name__', None)
 
 def breadcrumbs(self):
 context = self.context

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
https://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/trunk/src/Products/Five/browser/absoluteurl.py Merge r109473 from the 2.12 branch

2010-02-26 Thread Martijn Pieters
Log message for revision 109474:
  Merge r109473 from the 2.12 branch

Changed:
  U   Zope/trunk/src/Products/Five/browser/absoluteurl.py

-=-
Modified: Zope/trunk/src/Products/Five/browser/absoluteurl.py
===
--- Zope/trunk/src/Products/Five/browser/absoluteurl.py 2010-02-26 16:46:18 UTC 
(rev 109473)
+++ Zope/trunk/src/Products/Five/browser/absoluteurl.py 2010-02-26 16:49:27 UTC 
(rev 109474)
@@ -62,7 +62,7 @@
 def _getContextName(self, context):
 if getattr(context, 'getId', None) is not None:
 return context.getId()
-getattr(context, '__name__', None)
+return getattr(context, '__name__', None)
 
 def breadcrumbs(self):
 context = self.context

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
https://mail.zope.org/mailman/listinfo/zope-checkins