Codebase list python-faraday / 0fae443
Import new upstream release Sophie Brun 7 years ago
2 changed file(s) with 14 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
0 python-faraday (1.0.20-0kali1) kali-dev; urgency=medium
1
2 * Import new upstream release
3
4 -- Sophie Brun <[email protected]> Fri, 27 May 2016 11:55:08 +0200
5
06 python-faraday (1.0.19-0kali1) kali-dev; urgency=medium
17
28 * Import new upstream release
00 --- a/faraday.py
11 +++ b/faraday.py
2 @@ -132,10 +132,6 @@ def getParserArgs():
2 @@ -129,10 +129,6 @@ def getParserArgs():
33 default=False,
44 help="Ignore python dependencies resolution.")
55
1010 parser.add_argument('--cert', action="store", dest="cert_path",
1111 default=None,
1212 help="Path to the valid CouchDB certificate")
13 @@ -192,45 +188,6 @@ def query_user_bool(question, default=Tr
13 @@ -202,45 +198,6 @@ def query_user_bool(question, default=Tr
1414 "(or 'y' or 'n').\n")
1515
1616
5656 def startProfiler(app, output, depth):
5757 """Profiler handler.
5858
59 @@ -518,40 +475,6 @@ _/ ____\_____ ____________ __| _/__
59 @@ -520,40 +477,6 @@ _/ ____\_____ ____________ __| _/__
6060 logger.info("Starting Faraday IDE.")
6161
6262
9797 def checkCouchUrl():
9898 import requests
9999 try:
100 @@ -567,30 +490,6 @@ def checkCouchUrl():
100 @@ -569,29 +492,6 @@ def checkCouchUrl():
101101 # Non fatal error
102102 pass
103103
109109 - if getInstanceConfiguration().getVersion() != None and getInstanceConfiguration().getVersion() != f_version:
110110 - logger.warning("You have different version of Faraday since your last run.\nRun ./faraday.py --update to update configuration!")
111111 - if query_yes_no('Do you want to close Faraday?', 'yes'):
112 - exit(-1)
112 - sys.exit(-1)
113113 -
114114 - getInstanceConfiguration().setVersion(f_version)
115115 - f.close()
122122 - json.dump(doc, doc_file)
123123 - except Exception as e:
124124 - getLogger("launcher").error("It seems that something's wrong with your version\nPlease contact customer support")
125 - exit(-1)
125 - sys.exit(-1)
126126 -
127 -
127
128128 def init():
129129 """Initializes what is needed before starting.
130
131 @@ -616,20 +515,12 @@ def main():
130 @@ -618,20 +518,12 @@ def main():
132131 """
133132
134133 init()