From 68c60833708b2a5b52d7993260c2504a97c728db Mon Sep 17 00:00:00 2001 From: qorg11 Date: Sun, 7 Nov 2021 15:44:30 +0100 Subject: [PATCH] Remove warnings --- peertube-cli.pl | 2 -- 1 file changed, 2 deletions(-) diff --git a/peertube-cli.pl b/peertube-cli.pl index 02a7448..788afa2 100755 --- a/peertube-cli.pl +++ b/peertube-cli.pl @@ -10,7 +10,6 @@ use Term::ReadLine; use Term::ANSIColor; use Getopt::Long; use Time::Seconds; -use warnings; use strict; our %config; @@ -104,7 +103,6 @@ if (!$ARGV[0]) { sub search_video($$$) { my ($instance, $search_string, $counter) = @_; - print $instance . "\n"; my $response = $ua->get("$instance/api/v1/search/videos?search=$search_string&count=25&start=$counter"); if ($response->{_rc} == 200) { return $response->content;