From: Vladimír Vondruš Date: Mon, 11 Dec 2017 13:46:35 +0000 (+0100) Subject: doxygen: use single quotes for non-prose text. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=16bfe78bd7b0d0a864c1cf43a73e5a2daedd64c0;p=blog.git doxygen: use single quotes for non-prose text. --- diff --git a/doxygen/test/__init__.py b/doxygen/test/__init__.py index 96dc7b4f..ec28592b 100644 --- a/doxygen/test/__init__.py +++ b/doxygen/test/__init__.py @@ -20,7 +20,7 @@ class IntegrationTestCase(unittest.TestCase): def setUp(self): if os.path.exists(os.path.join(self.path, 'xml')): shutil.rmtree(os.path.join(self.path, 'xml')) - subprocess.run(["doxygen"], cwd=self.path) + subprocess.run(['doxygen'], cwd=self.path) if os.path.exists(os.path.join(self.path, 'html')): shutil.rmtree(os.path.join(self.path, 'html'))