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
20795ffc
Commit
20795ffc
authored
Jan 05, 2013
by
Gary Hodgson
Committed by
Guillaume Seguin
May 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
distinguish serial exception@
parent
c5963dae
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
printcore.py
printcore.py
+3
-3
No files found.
printcore.py
View file @
20795ffc
...
...
@@ -169,16 +169,16 @@ class printcore():
return
line
except
SelectError
as
e
:
if
'Bad file descriptor'
in
e
.
args
[
1
]:
print
"Can't read from printer (disconnected?) ({0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
print
"Can't read from printer (disconnected?) (
SelectError
{0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
return
None
else
:
print
"SelectError ({0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
raise
except
SerialException
as
e
:
print
"Can't read from printer (disconnected?) ({0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
print
"Can't read from printer (disconnected?) (
SerialException
{0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
return
None
except
OSError
as
e
:
print
"Can't read from printer (disconnected?) ({0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
print
"Can't read from printer (disconnected?) (
OS Error
{0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
return
None
def
_listen_can_continue
(
self
):
...
...
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