Skip to content
Snippets Groups Projects

OutputStreamAthenaPool: python 3 fixes

Merged Scott Snyder requested to merge ssnyder/athena:py3.OutputStreamAthenaPool-20200726 into master
1 file
+ 2
3
Compare changes
  • Side-by-side
  • Inline
@@ -6,6 +6,7 @@
## creation: David Cote (May 2008) ##
########################################################
from __future__ import print_function
import os
class AugmentedStreamBase:
"""This class manages common methods of AugmentedPoolStream and AugmentedByteStream."""
@@ -272,9 +273,7 @@ class AugmentedByteStream( AugmentedStreamBase ):
svcMgr.ToolSvc += self.bsCopyTool
#default output directory
import subprocess
cmd='pwd'
(statusCode,outDir) = subprocess.getstatusoutput(cmd)
outDir = os.getcwd()
outDir+="/"
# BS output Svc
Loading