Skip to content

Commit

Permalink
Fix issue with strings on Windows with pathnames in config file.
Browse files Browse the repository at this point in the history
  • Loading branch information
lowrie committed Dec 28, 2015
1 parent 18b38a9 commit da3fc70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
min_image_width = 2048
# The folder which contains wood grain image files
wood_images = '%s'
wood_images = r'%s'
# This is either a wood name (the file prefix of an image file in wood_images),
# or the following Qt fill patterns:
# DiagCrossPattern, BDiagPattern, FDiagPattern, Dense1Pattern, Dense5Pattern
default_wood = 'DiagCrossPattern'
default_wood = r'DiagCrossPattern'
# Set debug to True to turn on debugging. This will print a lot of output to
# stdout during a pyRouterJig session. This option is typically only useful
Expand Down

0 comments on commit da3fc70

Please sign in to comment.