-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3199 from kif/3198_error_saving
LGTM
- Loading branch information
Showing
5 changed files
with
188 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,7 @@ | |
__authors__ = ["Frédéric-Emmanuel Picca", "Jérôme Kieffer"] | ||
__contact__ = "[email protected]" | ||
__license__ = "MIT" | ||
__date__ = "26/07/2018" | ||
|
||
__date__ = "30/09/2020" | ||
|
||
import argparse | ||
import distutils.util | ||
|
@@ -21,7 +20,6 @@ | |
import sys | ||
import tempfile | ||
|
||
|
||
logging.basicConfig() | ||
logger = logging.getLogger("bootstrap") | ||
|
||
|
@@ -69,6 +67,7 @@ def _get_available_scripts(path): | |
|
||
|
||
if sys.version_info[0] >= 3: # Python3 | ||
|
||
def execfile(fullpath, globals=None, locals=None): | ||
"Python3 implementation for execfile" | ||
with open(fullpath) as f: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.