summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;