Skip to content

Commit

Permalink
BUG: Fix running sphinx-gallery on windows
Browse files Browse the repository at this point in the history
Windows no likey '/'
  • Loading branch information
dopplershift committed Apr 3, 2018
1 parent aa74704 commit db2cf2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
'matplotlib': 'http://matplotlib.org',
'numpy': 'http://docs.scipy.org/doc/numpy/',
'requests': 'http://docs.python-requests.org/en/master/'},
'examples_dirs': ['../examples'],
'examples_dirs': [os.path.join('..', 'examples')],
'gallery_dirs': ['examples'],
'filename_pattern': '/',
'filename_pattern': '\.py',
'backreferences_dir': 'api/generated',
'default_thumb_file': os.path.join('_static', 'siphon_150x150_white_bg.png'),
'abort_on_example_error': True
Expand Down

0 comments on commit db2cf2d

Please sign in to comment.