summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-08-07 14:54:33 -0400
committerJesse Luehrs <doy@tozt.net>2013-09-03 16:50:15 -0400
commit82416cdb01591c91de38410794877122e5aecc23 (patch)
tree6c1e4a6b74571da2fc4f7e3df36b49d205c43427
parent1f191d9e1456ad2a734625b28e26d750974631c2 (diff)
downloadreply-82416cdb01591c91de38410794877122e5aecc23.tar.gz
reply-82416cdb01591c91de38410794877122e5aecc23.zip
work around mop bug
-rw-r--r--lib/Reply/App.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Reply/App.pm b/lib/Reply/App.pm
index f7fd590..6755b43 100644
--- a/lib/Reply/App.pm
+++ b/lib/Reply/App.pm
@@ -3,13 +3,15 @@ use strict;
use warnings;
# ABSTRACT: command line app runner for Reply
-use mop;
-
use Getopt::Long 2.36 'GetOptionsFromArray';
use Reply;
use Reply::Config;
+# XXX have to 'use mop' *after* using Reply::Config, or else the stash clearing
+# stuff breaks things
+use mop;
+
=head1 SYNOPSIS
use Reply::App;