summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-04-11 09:44:58 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-04-11 09:45:24 +0200
commitc5d2ae46a93c81b476a721f2df93042648bf317f (patch)
tree56340b5ec75d45aff7f44247b6238af7beba6246
parent7f96c6a3cb79127480a7dc6f9f1753c853a66969 (diff)
Fix fb -g missing / in URL
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-xfb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fb.py b/fb.py
index 5e6611d..b5b2f6d 100755
--- a/fb.py
+++ b/fb.py
@@ -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 = []):