aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-06-07 15:14:24 +0100
committerGravatar Gareth Coles <[email protected]>2018-06-07 15:14:24 +0100
commit1a4bcbddb870a821fd15c7177102ed71c2d3324f (patch)
treed2695df32d270dde638677e70993ddbffceb009d
parentAdd "rundev" to pipfile (diff)
Remove some debug code from the button directive
-rw-r--r--pysite/rst/directives/__init__.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/pysite/rst/directives/__init__.py b/pysite/rst/directives/__init__.py
index 2df1d734..b4359200 100644
--- a/pysite/rst/directives/__init__.py
+++ b/pysite/rst/directives/__init__.py
@@ -1,5 +1,3 @@
-import pprint
-
from docutils import nodes
from docutils.parsers.rst import Directive
from docutils.parsers.rst.directives import unchanged, unchanged_required
@@ -28,8 +26,6 @@ class ButtonDirective(Directive):
}
def run(self):
- pprint.pprint(self.__dict__) # DEBUG
-
icon = self.options.get("icon", "")
button_type = self.options.get("type", "primary")