From: Matt Amos Date: Mon, 18 Jan 2016 23:19:25 +0000 (+0000) Subject: Fix rubocop complaints. X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/80b2e07ae5e36c04a8717565df7c9f4e101ec917?ds=sidebyside Fix rubocop complaints. --- diff --git a/cookbooks/planet/files/default/replication-bin/replicate-changesets b/cookbooks/planet/files/default/replication-bin/replicate-changesets index 6175691cb..8fd78a1bc 100644 --- a/cookbooks/planet/files/default/replication-bin/replicate-changesets +++ b/cookbooks/planet/files/default/replication-bin/replicate-changesets @@ -18,7 +18,7 @@ GEO_SCALE = 10000000 ## # replace characters which cannot be represented in XML 1.0. def xml_sanitize(str) - str.gsub(/[\x00-\x08\x0b\x0c\x0e-\x20]/,'?') + str.gsub(/[\x00-\x08\x0b\x0c\x0e-\x20]/, "?") end ##