diff mbox

[Branch,~linaro-validation/lava-dashboard/trunk] Rev 404: Fix a small typo in error message where a space is missing.

Message ID 20130502103917.18781.93376.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Senthil Kumaran May 2, 2013, 10:39 a.m. UTC
------------------------------------------------------------
revno: 404
committer: Senthil Kumaran <senthil.kumaran@linaro.org>
branch nick: trunk
timestamp: Thu 2013-05-02 16:05:29 +0530
message:
  Fix a small typo in error message where a space is missing.
modified:
  dashboard_app/xmlrpc.py


--
lp:lava-dashboard
https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk

You are subscribed to branch lp:lava-dashboard.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'dashboard_app/xmlrpc.py'
--- dashboard_app/xmlrpc.py	2013-05-02 10:30:20 +0000
+++ dashboard_app/xmlrpc.py	2013-05-02 10:35:29 +0000
@@ -284,7 +284,7 @@ 
             bundle = Bundle.objects.get(content_sha1=content_sha1)
             if not bundle.bundle_stream.is_accessible_by(self.user):
                 raise xmlrpclib.Fault(
-                    403, "Permission denied.  User does not have permissions"
+                    403, "Permission denied.  User does not have permissions "
                     "to access this bundle.")
         except Bundle.DoesNotExist:
             raise xmlrpclib.Fault(errors.NOT_FOUND,