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
8b49127a
Commit
8b49127a
authored
Mar 29, 2014
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove translatable string from gcoder to remove i18n
parent
0a7f2335
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
gcoder.py
printrun/gcoder.py
+1
-4
No files found.
printrun/gcoder.py
View file @
8b49127a
...
...
@@ -21,9 +21,6 @@ import datetime
import
logging
from
array
import
array
from
.utils
import
install_locale
install_locale
(
'pronterface'
)
gcode_parsed_args
=
[
"x"
,
"y"
,
"e"
,
"f"
,
"z"
,
"i"
,
"j"
]
gcode_parsed_nonargs
=
[
"g"
,
"t"
,
"m"
,
"n"
]
to_parse
=
""
.
join
(
gcode_parsed_args
+
gcode_parsed_nonargs
)
...
...
@@ -70,7 +67,7 @@ def split(line):
if
not
split_raw
:
line
.
command
=
line
.
raw
line
.
is_move
=
False
logging
.
warning
(
_
(
"raw G-Code line
\"
%
s
\"
could not be parsed"
)
%
line
.
raw
)
logging
.
warning
(
"raw G-Code line
\"
%
s
\"
could not be parsed"
%
line
.
raw
)
return
[
line
.
raw
]
command
=
split_raw
[
0
]
if
split_raw
[
0
][
0
]
!=
"n"
else
split_raw
[
1
]
line
.
command
=
command
[
0
]
.
upper
()
+
command
[
1
]
...
...
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