changeset 1271:cf4cc816278a live last_rails2_version

Remove inner quotes from realm (workaround for #577)
author Chris Cannam
date Tue, 07 May 2013 12:45:51 +0100
parents a417718efbc6
children a778eeeeec77 ab89f95ef405
files extra/soundsoftware/SoundSoftware.pm
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/extra/soundsoftware/SoundSoftware.pm	Tue Mar 19 09:03:58 2013 +0000
+++ b/extra/soundsoftware/SoundSoftware.pm	Tue May 07 12:45:51 2013 +0100
@@ -550,7 +550,9 @@
         $name = $repo;
     }
 
-    my $realm = '"Mercurial repository for ' . "'$name'" . '"';
+#    my $realm = '"Mercurial repository for ' . "'$name'" . '"';
+# see #577:
+    my $realm = '"Mercurial repository for ' . "$name" . '"';
 
     $realm;
 }