Update for Vulkan-Docs 1.1.119

This commit is contained in:
Jon Leech 2019-08-11 23:59:42 -07:00 committed by Jon Leech
parent 7f6a212a13
commit 6c85427e3e
4 changed files with 555 additions and 47 deletions

View file

@ -21,7 +21,10 @@ import os
import re
import pdb
import sys
from pathlib import Path
try:
from pathlib import Path
except ImportError:
from pathlib2 import Path
def write( *args, **kwargs ):
file = kwargs.pop('file',sys.stdout)