Skip to content

Commit

Permalink
Re #6630. Apparently you should create directories with absolute path.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed Mar 27, 2013
1 parent 737b73c commit 3ed4b9c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Code/Mantid/docs/qtassistant/assistant_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def assertDirs(outputdir, verbose=False):

for direc in (HTML_DIR, QCH_DIR, IMG_DIR):
direc = os.path.join(outputdir, direc)
direc = os.path.abspath(direc)
if not os.path.exists(direc):
if verbose:
print "creating '%s'" % direc
Expand Down

0 comments on commit 3ed4b9c

Please sign in to comment.