commit f7a49ff6e0c464c593e80d0f095d835f891fa7ad
parent a317eb71d52d38b38bc62298421556cc923f80dd
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Wed, 9 Oct 2019 18:19:02 -0400
Use qw() properly in import statements
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tuptime-update.pl b/tuptime-update.pl
@@ -3,7 +3,7 @@
use strict;
use warnings;
use HTML::TreeBuilder;
-use File::Copy qw(copy), qw(move);
+use File::Copy qw(copy move);
# Copy about-site file so we can work on it without disturbing live copy
copy '/var/www/html/about-site.html', './about-site.html';