From 3e0c3a1159439e20ec6820860c683012656bf0db Mon Sep 17 00:00:00 2001
From: William F Godoy <williamfgc@yahoo.com>
Date: Mon, 6 Nov 2017 17:05:00 -0500
Subject: [PATCH] Fixing Python formatting issue

---
 examples/hello/bpWriter/helloBPWriter.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/hello/bpWriter/helloBPWriter.py b/examples/hello/bpWriter/helloBPWriter.py
index fae66b3bc..2a0b26829 100644
--- a/examples/hello/bpWriter/helloBPWriter.py
+++ b/examples/hello/bpWriter/helloBPWriter.py
@@ -25,7 +25,7 @@ adios = adios2.ADIOS(comm, adios2.DebugON)
 bpIO = adios.DeclareIO("BPFile_N2N")
 bpIO.SetEngine('BPFileWriter')
 # bpIO.SetParameters( {"Threads" : "2", "ProfileUnits" : "Microseconds",
-#"InitialBufferSize" : "17Kb"} )
+# "InitialBufferSize" : "17Kb"} )
 bpIOParams = {}
 bpIOParams['Threads'] = '2'
 bpIOParams['ProfileUnits'] = 'Microseconds'
@@ -35,7 +35,7 @@ bpIO.SetParameters(bpIOParams)
 fileID = bpIO.AddTransport('File', {'Library': 'fstream'})
 
 # ADIOS Variable name, shape, start, offset, constant dims
-bpIO.DefineVariable(
+ioArray = bpIO.DefineVariable(
     "bpArray", [size * Nx], [rank * Nx], [Nx], adios2.ConstantDims)
 
 # ADIOS Engine
-- 
GitLab