diff options
-rw-r--r-- | wee_slack.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index e29b463..8f0f03e 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -4090,7 +4090,8 @@ def command_upload(data, current_buffer, args): Uploads a file to the current buffer. """ channel = EVENTROUTER.weechat_controller.buffers[current_buffer] - file_path = os.path.expanduser(args) + weechat_dir = w.info_get("weechat_dir", "") + file_path = os.path.join(weechat_dir, os.path.expanduser(args)) if channel.type == 'team': w.prnt('', "ERROR: Can't upload a file to the team buffer") |