Switching single-quoted strings to double-quote to avoid escaping the apostrophe...
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 3 Jul 2011 14:29:09 +0000 (09:29 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 3 Jul 2011 14:29:09 +0000 (09:29 -0500)
mediagoblin/edit/views.py

index f069d8e70c553ddb556c3ed89a6619e222001ab8..e064a9c3083c287eb4a5ec4872718286bdcd79e2 100644 (file)
@@ -69,7 +69,7 @@ def edit_media(request, media):
             and request.method != 'POST':
         messages.add_message(
             request, messages.WARNING,
-            'You are editing another user\'s media. Proceed with caution.')
+            "You are editing another user's media. Proceed with caution.")
         
 
     return render_to_response(
@@ -90,7 +90,7 @@ def edit_profile(request):
         if request.method != 'POST':
             messages.add_message(
                 request, messages.WARNING,
-                'You are editing a user\'s profile. Proceed with caution.')
+                "You are editing a user's profile. Proceed with caution.")
     else:
         user = request.user