[bugfix] false indentation corrected (broken program logic fixed)

This commit is contained in:
Sebastian Wehling-Benatelli 2015-06-24 14:31:43 +02:00
parent 8dd100792e
commit 0d3fb8be93

View File

@ -95,7 +95,7 @@ def getGlobalTimes(stream):
min_start = trace.stats.starttime
if max_end is None or trace.stats.endtime > max_end:
max_end = trace.stats.endtime
return [min_start, max_end]
return min_start, max_end
def createCreationInfo(agency_id=None, creation_time=None, author=None):