Browse Source

Fixed variable referenced before assignement

bugfixes
gau1991 10 years ago
parent
commit
fe1c77b896
  1. 4
      ee/cli/plugins/site.py

4
ee/cli/plugins/site.py

@ -475,10 +475,10 @@ class EESiteCreateController(CementBaseController):
cache = 'wpsc' cache = 'wpsc'
if data and self.app.pargs.hhvm: if data and self.app.pargs.hhvm:
data[hhvm] = True data['hhvm'] = True
hhvm = True hhvm = True
else: else:
data[hhvm] = False data['hhvm'] = False
hhvm = False hhvm = False
if not data: if not data:

Loading…
Cancel
Save