The following commit has been merged in the master branch:
commit 47fd9582c24990754b7b24de5e92a03ed4bcb474
Author: James Vega <[email protected]>
Date: Mon Aug 2 19:41:45 2010 -0400
debsnap: Remove use of pure-perl specific functions from JSON module.
Closes: #591392
Signed-off-by: James Vega <[email protected]>
diff --git a/debian/changelog b/debian/changelog
index 4e64d6a..750e19d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ devscripts (2.10.67) UNRELEASED; urgency=low
* debcommit: Use the first detected changelog instead of the last. (Closes:
#591368)
+ * debsnap: Remove use of pure-perl specific functions from JSON module.
+ (Closes: #591392)
-- James Vega <[email protected]> Mon, 02 Aug 2010 19:30:40 -0400
diff --git a/scripts/debsnap.pl b/scripts/debsnap.pl
index 55e19a9..eb4ee46 100755
--- a/scripts/debsnap.pl
+++ b/scripts/debsnap.pl
@@ -110,7 +110,7 @@ sub fetch_json_page
my $json = JSON->new();
# these are some nice json options to relax restrictions a bit:
- my $json_text =
$json->allow_nonref->utf8->relaxed->escape_slash->loose->allow_singlequote->allow_barekey->decode($content);
+ my $json_text = $json->allow_nonref->utf8->relaxed->decode($content);
return $json_text;
}
--
Git repository for devscripts
--
To unsubscribe, send mail to [email protected].