Skip to content

Commit

Permalink
Fix bug with absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
manuvarkey committed Jun 29, 2019
1 parent 638116d commit 4d69a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion estimator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def on_open_project_clicked(self, button=None, filename=None):
"""Open project selected by the user"""

if filename:
self.filename = filename
self.filename = os.path.abspath(filename)
else:
# Create a filechooserdialog to open:
# The arguments are: title of the window, parent_window, action,
Expand Down

0 comments on commit 4d69a72

Please sign in to comment.