From: Christopher Allan Webber Date: Sun, 3 Jul 2011 14:29:09 +0000 (-0500) Subject: Switching single-quoted strings to double-quote to avoid escaping the apostrophe... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b86bedf9eac62ed41715de1a17bb49c672dfba93;p=mediagoblin.git Switching single-quoted strings to double-quote to avoid escaping the apostrophe.. :) --- diff --git a/mediagoblin/edit/views.py b/mediagoblin/edit/views.py index f069d8e7..e064a9c3 100644 --- a/mediagoblin/edit/views.py +++ b/mediagoblin/edit/views.py @@ -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