Skip to content

Commit

Permalink
Fixed a python error. Refs #9573.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Jun 11, 2014
1 parent 9b07ee1 commit 853d97f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/docs/source/algorithms/ExportTimeSeriesLog-v1.rst
Expand Up @@ -39,7 +39,7 @@ Usage
for i in xrange(60):
randsec = random.randint(0, 59)
randval = random.random()*100.
timetemp = DateAndTime("2012-01-01T00:%d:%d"%(i, randsec))
timetemp = mk.DateAndTime("2012-01-01T00:%d:%d"%(i, randsec))
testprop.addValue(timetemp, randval)
dataws.run().addProperty("Temp", testprop, True)

Expand Down Expand Up @@ -83,7 +83,7 @@ Output:
for i in xrange(60):
randsec = random.randint(0, 59)
randval = random.random()*100.
timetemp = DateAndTime("2012-01-01T00:%d:%d"%(i, randsec))
timetemp = mk.DateAndTime("2012-01-01T00:%d:%d"%(i, randsec))
testprop.addValue(timetemp, randval)
dataws.run().addProperty("Temp", testprop, True)

Expand Down

0 comments on commit 853d97f

Please sign in to comment.