Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ipsframework/ips.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
# -------------------------------------------------------------------------------
# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information.
# -------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion ipsframework/ips_dakota_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# -------------------------------------------------------------------------------
# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information.
# -------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion ipsframework/ips_dakota_dynamic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -------------------------------------------------------------------------------
# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information.
# -------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion ipsframework/portalBridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def send_event(self, sim_data, event_data):
try:
if self.first_event: # First time, launch sendPost.py daemon
cmd = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'sendPost.py')
python_exec = shutil.which('python')
python_exec = shutil.which('python3')
self.childProcess = Popen([python_exec, cmd], bufsize=128,
stdin=PIPE, stdout=PIPE,
stderr=PIPE, close_fds=True)
Expand Down
2 changes: 1 addition & 1 deletion ipsframework/sendPost.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -------------------------------------------------------------------------------
# Copyright 2006-2021 UT-Battelle, LLC. See LICENSE for more information.
# -------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion ipsframework/utils/HTML.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
# -*- coding: iso-8859-1 -*-
"""
HTML.py - v0.04 2009-07-28 Philippe Lagadec
Expand Down