diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-04-11 09:44:58 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-04-11 09:45:24 +0200 |
commit | c5d2ae46a93c81b476a721f2df93042648bf317f (patch) | |
tree | 56340b5ec75d45aff7f44247b6238af7beba6246 | |
parent | 7f96c6a3cb79127480a7dc6f9f1753c853a66969 (diff) |
Fix fb -g missing / in URL
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | fb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -161,7 +161,7 @@ class CURLWrapper: return self.perform() def send_get_simple(self, url): - self.curl.setopt(pycurl.URL, self.config["pastebin"] + url) + self.curl.setopt(pycurl.URL, self.config["pastebin"] + "/" + url) return self.perform_simple() def send_post_progress(self, url, data = []): |