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
b514379f
Commit
b514379f
authored
May 30, 2015
by
Robert van Bregt
Committed by
Bram Schoenmakers
May 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added os.path.expanduser to filenames
parent
4a7e8aed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
topydo/lib/Config.py
topydo/lib/Config.py
+2
-2
No files found.
topydo/lib/Config.py
View file @
b514379f
...
...
@@ -108,10 +108,10 @@ class _Config:
return
self
.
defaults
[
'highlight_projects_contexts'
]
==
'1'
def
todotxt
(
self
):
return
self
.
cp
.
get
(
'topydo'
,
'filename'
)
return
os
.
path
.
expanduser
(
self
.
cp
.
get
(
'topydo'
,
'filename'
)
)
def
archive
(
self
):
return
self
.
cp
.
get
(
'topydo'
,
'archive_filename'
)
return
os
.
path
.
expanduser
(
self
.
cp
.
get
(
'topydo'
,
'archive_filename'
)
)
def
identifiers
(
self
):
return
self
.
cp
.
get
(
'topydo'
,
'identifiers'
)
...
...
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