Skip to content

Commit 94444ed

Browse files
committed
prevent warnings to be treated as fatal errors in py++
1 parent 5032746 commit 94444ed

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pygccxml/parser/source_reader.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ def create_xml_file( self, header, destination=None ):
153153
process = subprocess.Popen( args=command_line
154154
, shell=True
155155
, stdin=subprocess.PIPE
156-
, stdout=subprocess.PIPE
157-
, stderr=subprocess.STDOUT )
156+
, stdout=subprocess.PIPE )
158157
process.stdin.close()
159158

160159
gccxml_reports = []

0 commit comments

Comments
 (0)