diff --git a/ac2git.py b/ac2git.py index 7657f3a..717272a 100755 --- a/ac2git.py +++ b/ac2git.py @@ -36,7 +36,7 @@ logger = None -ignored_transaction_types = [ "archive", "compress", "defcomp", "dispatch", "unarchive" ] +ignored_transaction_types = [ "archive", "compress", "dispatch", "unarchive" ] # Taken from this StackOverflow answer: http://stackoverflow.com/a/19238551 # Compulsary quote: https://twitter.com/codinghorror/status/712467615780708352 diff --git a/accurev.py b/accurev.py index 837157f..645f64c 100755 --- a/accurev.py +++ b/accurev.py @@ -2622,20 +2622,6 @@ def deep_hist(depot=None, stream=None, timeSpec='now', ignoreTimelocks=False, us else: ts.start = mkstreamTr.id - # Special case: Accurev pass-through stream - # ----------------------------------------- - # Here we will only restrict the timeSpec to be after the pass-through stream was created and return the history of the parent - # stream instead with an early return. - if streamInfo.Type == "passthrough": - if streamInfo.basisStreamNumber is None: - return [] - - rv = ext.deep_hist(depot=depot, stream=streamInfo.basis, timeSpec=ts, ignoreTimelocks=ignoreTimelocks, useCache=useCache) - if not isAsc: - rv.reverse() - - return rv - #print('{0}:{1}'.format(stream, ts)) # debug info # Perform deep-hist algorithm