[Checkins] SVN: grok/trunk/src/grok/ftests/url/url_function.py Commit fix that JW and I came up with last night.

Martijn Faassen faassen at infrae.com
Fri Apr 27 07:48:37 EDT 2007


Log message for revision 74853:
  Commit fix that JW and I came up with last night.
  

Changed:
  U   grok/trunk/src/grok/ftests/url/url_function.py

-=-
Modified: grok/trunk/src/grok/ftests/url/url_function.py
===================================================================
--- grok/trunk/src/grok/ftests/url/url_function.py	2007-04-27 09:54:28 UTC (rev 74852)
+++ grok/trunk/src/grok/ftests/url/url_function.py	2007-04-27 11:48:36 UTC (rev 74853)
@@ -7,7 +7,7 @@
   >>> import grok
   >>> grok.grok('grok.ftests.url.url_function')
   
-  >>> from grok.ftests.url.url import Herd, Mammoth
+  >>> from grok.ftests.url.url_function import Herd, Mammoth
   >>> herd = Herd()
   >>> getRootFolder()['herd'] = herd
   >>> manfred = Mammoth()
@@ -65,6 +65,7 @@
   True
 """
 import grok
+from grok import url
 
 class Herd(grok.Container, grok.Model):
     pass



More information about the Checkins mailing list