##// END OF EJS Templates
fix Py3 test compatibility
Daniel B. Vasquez -
Show More
@@ -68,8 +68,7 b' class TestPandoc(TestsBase):'
68 68 def pandoc_function_raised_missing(f, *args, **kwargs):
69 69 try:
70 70 f(*args, **kwargs)
71 except pandoc.PandocMissing as e:
72 print e
71 except pandoc.PandocMissing:
73 72 return True
74 73 else:
75 74 return False
General Comments 0
You need to be logged in to leave comments. Login now