Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion gtd.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,9 @@ def tsv_option(f):
@click.pass_context
def cli(top_level_context, board, color, banner):
'''gtd.py'''
filename= os.getenv('GTDPYRC')
try:
config = Configuration.from_file()
config = Configuration.from_file(filename)
except GTDException:
click.echo('Could not find a valid config file for gtd.')
if click.confirm('Would you like to create it interactively?'):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PyYAML==5.4
PyYAML==6.0
py-trello==0.15.0
click==7.0
prompt_toolkit==3.0.3
Expand Down