--- trunk/esys2/tools/vizTools/make_movie.py 2005/09/01 03:31:39 149 +++ trunk/esys2/tools/vizTools/make_movie.py 2005/09/15 03:44:45 150 @@ -74,7 +74,8 @@ front = r.findall(fname) front = front[0] # make the conversion string to pass to 'convert' - convString = "convert %s%s %spnm" % (front, format, front) + convString = "convert %s/%s%s %s/%spnm" % \ + (dirname, front, format, dirname, front) retVal = os.system(convString) if retVal != 0: raise SystemError, "Conversion of %s%s failed" % (front, format)