Private GIT

Skip to content
Snippets Groups Projects
Commit 476350aa authored by echel0n's avatar echel0n
Browse files

Fixed issues with pastebin attachments for issue submitter.

parent 5fe4d743
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
#set global $sbPath = ".."
#set global $topmenu="home"#
#import os.path
#import os.pat
#include $os.path.join($sickbeard.PROG_DIR, "gui/slick/interfaces/default/inc_top.tmpl")
#set $myDB = $db.DBConnection()
......
......@@ -17,17 +17,8 @@
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
import os
import traceback
import re
import sickbeard
import six
import chardet
import unicodedata
from string import ascii_letters, digits
from sickbeard import logger
from unidecode import unidecode
import sickbeard
def _toUnicode(x):
try:
......
......@@ -26,6 +26,7 @@ import platform
import sickbeard
from sickbeard import classes
from sickbeard.encodingKludge import ek
from github import Github
from pastebin import PastebinAPI
......@@ -149,10 +150,11 @@ class Logger(object):
pastebin_url = None
try:
if self.logFile and os.path.isfile(self.logFile):
with ek.ek(open, self.logFile) as f:
data = f.readlines(50)
with ek(open, self.logFile) as f:
data = f.readlines()
data = "".join(data[len(data) - 100:])
pastebin_url = PastebinAPI().paste('f59b8e9fa1fc2d033e399e6c7fb09d19', data)
except:
except Exception as e:
pass
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment