diff extra/soundsoftware/SoundSoftware.pm @ 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 1ce6efe3db0e
children 1e9b1bdd062e
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;
 }