Skip to content

Commit

Permalink
Fixed a bug. Refs #8994.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Feb 14, 2014
1 parent 106d2d2 commit d7dd1d0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -202,7 +202,7 @@ def _readSampleLogs(self):
tmplength = len(logtimesdict[self._sampleloglist[i]])
if loglength != tmplength:
if loglength != sys.maxint:
self.log().warning("Log %s has different length from previous ones. " % (lognames[i]))
self.log().warning("Log %s has different length from previous ones. " % (self._sampleloglist[i]))
loglength = min(loglength, tmplength)
# ENDIF
# ENDIF
Expand Down

0 comments on commit d7dd1d0

Please sign in to comment.