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
40b96592
Commit
40b96592
authored
May 30, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #38 from robertvanbregt/fix/issue37
added os.path.expanduser to filenames
parents
29385469
37a73fb2
Changes
1
Hide 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 @
40b96592
...
@@ -108,10 +108,10 @@ class _Config:
...
@@ -108,10 +108,10 @@ class _Config:
return
self
.
defaults
[
'highlight_projects_contexts'
]
==
'1'
return
self
.
defaults
[
'highlight_projects_contexts'
]
==
'1'
def
todotxt
(
self
):
def
todotxt
(
self
):
return
self
.
cp
.
get
(
'topydo'
,
'filename'
)
return
os
.
path
.
expanduser
(
self
.
cp
.
get
(
'topydo'
,
'filename'
)
)
def
archive
(
self
):
def
archive
(
self
):
return
self
.
cp
.
get
(
'topydo'
,
'archive_filename'
)
return
os
.
path
.
expanduser
(
self
.
cp
.
get
(
'topydo'
,
'archive_filename'
)
)
def
identifiers
(
self
):
def
identifiers
(
self
):
return
self
.
cp
.
get
(
'topydo'
,
'identifiers'
)
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