app/soc/views/models/document.py
changeset 650 33b6dcae5615
parent 629 492df53e4a0f
child 656 a76f1b443ea4
--- a/app/soc/views/models/document.py	Tue Dec 02 20:10:23 2008 +0000
+++ b/app/soc/views/models/document.py	Tue Dec 02 20:14:14 2008 +0000
@@ -63,7 +63,7 @@
     return scope_path
 
   def clean_link_id(self):
-    link_id = self.cleaned_data.get('link_id')
+    link_id = self.cleaned_data.get('link_id').lower()
     # TODO(tlarsen): combine path and link_id and check for uniqueness
     if not validate.isLinkIdFormatValid(link_id):
       raise forms.ValidationError("This link ID is in wrong format.")