mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 02:52:20 -05:00
Fixed issues with pastebin attachments for issue submitter.
This commit is contained in:
parent
5fe4d74316
commit
d881f794de
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user