Merge pull request #45 from Lotayou/master

Fixing os.path.join '\' issue for Windows compatibility
This commit is contained in:
Haris Iqbal
2019-07-30 11:17:32 +02:00
committed by GitHub
+1 -1
View File
@@ -2,7 +2,7 @@
import os
def to_head( projectpath ):
pathlayers = os.path.join( projectpath, 'layers/' )
pathlayers = os.path.join( projectpath, 'layers/' ).replace('\\', '/')
return r"""
\documentclass[border=8pt, multi, tikz]{standalone}
\usepackage{import}