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
3e49b61d
Commit
3e49b61d
authored
May 30, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bring back SelectError on reads
parent
704740f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
printcore.py
printcore.py
+7
-0
No files found.
printcore.py
View file @
3e49b61d
...
...
@@ -16,6 +16,7 @@
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.
from
serial
import
Serial
,
SerialException
from
select
import
error
as
SelectError
from
threading
import
Thread
import
time
,
getopt
,
sys
import
platform
,
os
,
traceback
...
...
@@ -166,6 +167,12 @@ class printcore():
except
:
pass
if
self
.
loud
:
print
"RECV: "
,
line
.
rstrip
()
return
line
except
SelectError
,
e
:
if
'Bad file descriptor'
in
e
.
args
[
1
]:
print
"Can't read from printer (disconnected?)."
return
None
else
:
raise
except
SerialException
,
e
:
print
"Can't read from printer (disconnected?)."
return
None
...
...
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