Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
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
machinery
Printrun
Commits
1581ab0b
Commit
1581ab0b
authored
Sep 06, 2012
by
Kliment Yanev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix exception when no bed present. Closes #283
parent
f35ce9cf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
pronterface.py
pronterface.py
+4
-1
No files found.
pronterface.py
View file @
1581ab0b
...
...
@@ -54,7 +54,10 @@ def dosify(name):
return
os
.
path
.
split
(
name
)[
1
]
.
split
(
"."
)[
0
][:
8
]
+
".g"
def
parse_temperature_report
(
report
,
key
):
if
key
in
report
:
return
float
(
filter
(
lambda
x
:
x
.
startswith
(
key
),
report
.
split
())[
0
]
.
split
(
":"
)[
1
]
.
split
(
"/"
)[
0
])
else
:
return
-
1.0
def
format_time
(
timestamp
):
return
datetime
.
datetime
.
fromtimestamp
(
timestamp
)
.
strftime
(
"
%
H:
%
M:
%
S"
)
...
...
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