Title: [commits] (morgen) [15968] Fix for bug 11513 (missing module names), r=bear
Revision
15968
Author
morgen
Date
2007-11-29 14:14:01 -0800 (Thu, 29 Nov 2007)

Log Message

Fix for bug 11513 (missing module names), r=bear

Modified Paths

Diff

Modified: trunk/chandler/parcels/osaf/sharing/accounts.py (15967 => 15968)

--- trunk/chandler/parcels/osaf/sharing/accounts.py	2007-11-29 19:37:09 UTC (rev 15967)
+++ trunk/chandler/parcels/osaf/sharing/accounts.py	2007-11-29 22:14:01 UTC (rev 15968)
@@ -282,7 +282,7 @@
                         SharedItem(collection).shares.append(share)
 
                     if share.exists():
-                        raise SharingError(_(u"Collection already exists on server."))
+                        raise errors.SharingError(_(u"Collection already exists on server."))
 
                     share.create()
                     # bug 8128, this setDisplayName shouldn't be required, but
@@ -329,7 +329,7 @@
                         SharedItem(collection).shares.append(share)
 
                     if share.exists():
-                        raise SharingError(_(u"Collection already exists on server."))
+                        raise errors.SharingError(_(u"Collection already exists on server."))
 
                     share.create()
                     share.put(activity=activity)




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to