Skip to content

Commit 327450a

Browse files
authored
Merge pull request six519#4 from jcbrockschmidt/patch-1
Use HTTPS instead of HTTP for API calls
2 parents c94718a + e0c6e60 commit 327450a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pastebin_python/pastebin_constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. moduleauthor:: Ferdinand Silva <[email protected]>
66
77
"""
8-
PASTEBIN_URL = "http://pastebin.com/" #: The pastebin.com base url
8+
PASTEBIN_URL = "https://pastebin.com/" #: The pastebin.com base url
99
PASTEBIN_RAW_URL = "%s%s" % (PASTEBIN_URL, "raw.php?i=%s")
1010
PASTEBIN_API_URL = "%s%s" % (PASTEBIN_URL, "api/") #: The pastebin.com API base URL
1111
PASTEBIN_API_POST_URL = "%s%s" % (PASTEBIN_API_URL, "api_post.php") #: The pastebin.com API POST URL
@@ -19,4 +19,4 @@
1919
EXPIRE_10_MIN = "10M" #:
2020
EXPIRE_1_HOUR = "1H" #:
2121
EXPIRE_1_DAY = "1D" #:
22-
EXPIRE_1_MONTH = "1M" #:
22+
EXPIRE_1_MONTH = "1M" #:

0 commit comments

Comments
 (0)