/usr/lib/python2.7/dist-packages/MLBviewer/mlbDailyStream.py is in mlbviewer 2015.sf.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/usr/bin/env python
from mlbProcess import MLBprocess
from mlbError import *
from mlbConstants import *
from mlbLog import MLBLog
from mlbConfig import MLBConfig
from mlbMediaStream import MediaStream
import re
import os
class MLBDailyStream(MediaStream):
def __init__(self,url,cfg):
# skeleton init to take advantage of MediaStream's cmdStr formatting
self.mediaUrl = url
self.cfg = cfg
self.streamtype='highlight'
self.stream = ('MLB.COM', '000', '123456', '00-0000-1970-01-01')
|