From 22201057dd7b6a71334eb661ff6df11261a3cd22 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Sun, 12 Mar 2017 22:20:56 +0100 Subject: Fixed pre tags in HTML formatter. The ending tag should be , not
.
---
 pastepy.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pastepy.py b/pastepy.py
index 77a3311..6af07ef 100644
--- a/pastepy.py
+++ b/pastepy.py
@@ -12,7 +12,7 @@ class CustomHtmlFormatter(HtmlFormatter):
 		for i, t in source:
 			yield i, '%s' % (line, t)
 			line += 1
-		yield 0, '
'
+		yield 0, '
' class Paste(object): def __init__(self): -- cgit v1.2.3