Skip to content
Snippets Groups Projects
Commit 1fc286cb authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'py3.OutputStreamAthenaPool-20200726' into 'master'

OutputStreamAthenaPool: python 3 fixes

See merge request atlas/athena!35105
parents e521cfb2 94a8532c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment