summaryrefslogtreecommitdiffstats
path: root/scripts/search.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/search.pl')
-rwxr-xr-xscripts/search.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/search.pl b/scripts/search.pl
index 6e0f7245d..3d2483f08 100755
--- a/scripts/search.pl
+++ b/scripts/search.pl
@@ -5,9 +5,9 @@ use Bugzilla;
use JSON '-convert_blessed_universally';
print JSON->new->pretty->encode(
- Bugzilla::Elastic::Search->new(
- quicksearch => "@ARGV",
- fields => ['bug_id', 'short_desc'],
- order => ['bug_id'],
- )->es_query
+ Bugzilla::Elastic::Search->new(
+ quicksearch => "@ARGV",
+ fields => ['bug_id', 'short_desc'],
+ order => ['bug_id'],
+ )->es_query
);