Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x-RPySOM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mu
x-RPySOM
Commits
b64e584c
Commit
b64e584c
authored
May 26, 2016
by
John Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
restoring the entry point.
parent
a5e7fbbc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
targetsomstandalone.py
src/targetsomstandalone.py
+2
-7
No files found.
src/targetsomstandalone.py
View file @
b64e584c
...
...
@@ -15,15 +15,10 @@ def entry_point(argv):
main
(
argv
)
except
Exit
,
e
:
return
e
.
code
except
ReturnException
,
e
:
os
.
write
(
2
,
"ERROR: Caught ReturnException in entry_point. result:
%
s, target:
%
s
\n
"
%
(
e
.
_result
,
e
.
_target
))
return
1
except
Exception
,
e
:
os
.
write
(
2
,
"ERROR:
Exception thrown during execution: "
+
str
(
e
)
+
"
\n
"
)
os
.
write
(
2
,
"ERROR:
%
s thrown during execution.
\n
"
%
e
)
return
1
os
.
write
(
2
,
"ERROR: Program exited without raising the Exit exception.
\n
"
)
return
1
return
0
# _____ Define and setup target ___
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment