1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed issues with pastebin attachments for issue submitter.

This commit is contained in:
echel0n 2014-12-19 05:06:01 -08:00
parent 5fe4d74316
commit 476350aa7a
3 changed files with 7 additions and 14 deletions

View File

@ -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()

View File

@ -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:

View File

@ -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: