From e6e1aff693d756a30af995d2831ae668e354540d Mon Sep 17 00:00:00 2001 From: checktheroads Date: Wed, 7 Aug 2019 11:10:30 -0700 Subject: [PATCH] :construction: temporarily disable pythonic Sass rendering --- manage.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/manage.py b/manage.py index 09075ca..81d9a55 100755 --- a/manage.py +++ b/manage.py @@ -25,6 +25,7 @@ cp = shutil.copyfile # Define working directory working_directory = os.path.dirname(os.path.abspath(__file__)) + def async_command(func): func = asyncio.coroutine(func) @@ -589,13 +590,13 @@ def flask_dev_server(host, port): click.style("✗ Error importing hyperlgass: ", fg="red", bold=True) + click.style(import_error, fg="blue") ) - try: - render.css() - except Exception as e: - raise click.ClickException( - click.style("✗ Error compiling Sass: ", fg="red", bold=True) - + click.style(e, fg="blue") - ) + # try: + # render.css() + # except Exception as e: + # raise click.ClickException( + # click.style("✗ Error compiling Sass: ", fg="red", bold=True) + # + click.style(e, fg="blue") + # ) try: click.secho( f"✓ Starting hyperglass development server...", fg="green", bold=True