diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-03 09:29:09 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-03 09:29:09 -0500 |
commit | b86bedf9eac62ed41715de1a17bb49c672dfba93 (patch) | |
tree | 639d8204ebd781e62e2798924076f0e2e75a3ffc | |
parent | 96a2c366427f288ba3c2e20789612d829a55e908 (diff) | |
download | mediagoblin-b86bedf9eac62ed41715de1a17bb49c672dfba93.tar.lz mediagoblin-b86bedf9eac62ed41715de1a17bb49c672dfba93.tar.xz mediagoblin-b86bedf9eac62ed41715de1a17bb49c672dfba93.zip |
Switching single-quoted strings to double-quote to avoid escaping the apostrophe.. :)
-rw-r--r-- | mediagoblin/edit/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |