Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
cf3171c2
Commit
cf3171c2
authored
May 18, 2015
by
Jacek Sowiński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use six.text_type instead of str while saving to temp file in EditCommand
parent
d606d862
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
topydo/commands/EditCommand.py
topydo/commands/EditCommand.py
+2
-2
No files found.
topydo/commands/EditCommand.py
View file @
cf3171c2
...
...
@@ -18,7 +18,7 @@ import os
from
subprocess
import
call
,
check_call
,
CalledProcessError
import
tempfile
from
six
import
u
from
six
import
text_type
,
u
from
topydo.commands.ListCommand
import
ListCommand
from
topydo.lib.MultiCommand
import
MultiCommand
...
...
@@ -52,7 +52,7 @@ class EditCommand(MultiCommand, ListCommand):
def
_todos_to_temp
(
self
):
f
=
tempfile
.
NamedTemporaryFile
()
for
todo
in
self
.
todos
:
f
.
write
((
str
(
todo
)
+
"
\
n
"
).
encode
(
'utf-8'
))
f
.
write
((
text_type
(
todo
)
+
"
\
n
"
).
encode
(
'utf-8'
))
f
.
seek
(
0
)
return
f
...
...
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