From d1aa812b930fac03a119d6e5fddb744ddcde2514 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 17 Jun 2018 23:54:20 -0700 Subject: [PATCH] Fix invalid escape sequences --- sass.py | 2 +- sassc.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sass.py b/sass.py index 6885c314..f38a53aa 100644 --- a/sass.py +++ b/sass.py @@ -265,7 +265,7 @@ def _check_no_remaining_kwargs(func, kwargs): def compile(**kwargs): - """There are three modes of parameters :func:`compile()` can take: + r"""There are three modes of parameters :func:`compile()` can take: ``string``, ``filename``, and ``dirname``. The ``string`` parameter is the most basic way to compile Sass. diff --git a/sassc.py b/sassc.py index 47b2fdf6..ac8fa150 100755 --- a/sassc.py +++ b/sassc.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -""":mod:`sassc` --- SassC compliant command line interface +r""":mod:`sassc` --- SassC compliant command line interface ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This provides SassC_ compliant CLI executable named :program:`sassc`: