From 70e40c51b8e98dbea39933f300c875caa42df3f8 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Fri, 10 Apr 2015 14:17:03 +0530 Subject: [PATCH] Fixed Typo --- ee/cli/plugins/clean.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ee/cli/plugins/clean.py b/ee/cli/plugins/clean.py index 5beb1d8c..63bd44fe 100644 --- a/ee/cli/plugins/clean.py +++ b/ee/cli/plugins/clean.py @@ -29,9 +29,9 @@ class EECleanController(CementBaseController): (['--memcache'], dict(help='Clean MemCache', action='store_true')), (['--opcache'], - dict(help='Clean OpCache', action='store_true')) + dict(help='Clean OpCache', action='store_true')), (['--pagespeed'], - dict(help='Clean Pagespeed Cache', action='store_true')) + dict(help='Clean Pagespeed Cache', action='store_true')), ] usage = "ee clean [options]" @@ -44,6 +44,7 @@ class EECleanController(CementBaseController): self.clean_memcache() self.clean_fastcgi() self.clean_opcache() + self.clean_pagespeed() if self.app.pargs.fastcgi: self.clean_fastcgi() if self.app.pargs.memcache: