mirror of https://github.com/MISP/misp-modules
Merge pull request #33 from Rafiot/master
fix: run the server as "python3 misp-modules"pull/37/head
commit
e2988e88ca
|
@ -160,7 +160,7 @@ class QueryModule(tornado.web.RequestHandler):
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
if os.path.dirname(__file__) is '.':
|
||||
if os.path.dirname(__file__) in ['.', '']:
|
||||
os.chdir('../')
|
||||
argParser = argparse.ArgumentParser(description='misp-modules server')
|
||||
argParser.add_argument('-t', default=False, action='store_true', help='Test mode')
|
||||
|
|
Loading…
Reference in New Issue