Browse Source

symb_upload.py: Remove check for basepath

basepath is not valid variable in this context.
pull/65/head
David Fuhrmann 9 years ago
parent
commit
e7f1eee0bc
  1. 2
      extras/breakpad/symb_upload.py

2
extras/breakpad/symb_upload.py

@ -168,8 +168,6 @@ class LocalDirOutputStore(OutputStore):
def __init__(self, rootdir: str):
super().__init__()
self.rootdir = rootdir
if not os.path.exists(basepath):
raise RuntimeError("root path '{}' does not exists".format(basepath))
def store(self, dump: typing.io, meta):
basepath = os.path.join(self.rootdir, meta["debug_file"], meta["debug_identifier"])

Loading…
Cancel
Save