Skip to content

Commit c5e385f

Browse files
committed
More layout adjustments
1 parent 9fcab68 commit c5e385f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

lib/parse/cmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def cmdLineParser():
105105
help="Use a HTTP proxy to connect to the target url")
106106

107107
request.add_option("--proxy-cred", dest="pCred",
108-
help="Proxy authentication credentials "
108+
help="HTTP proxy authentication credentials "
109109
"(name:password)")
110110

111111
request.add_option("--ignore-proxy", dest="ignoreProxy", action="store_true",

lib/request/methodrequest.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@
1111

1212

1313
class MethodRequest(urllib2.Request):
14-
''' Used to create HEAD/PUT/DELETE/... requests with urllib2 '''
14+
'''
15+
Used to create HEAD/PUT/DELETE/... requests with urllib2
16+
'''
17+
1518
def set_method(self, method):
1619
self.method = method.upper()
20+
1721
def get_method(self):
1822
return getattr(self, 'method', urllib2.Request.get_method(self))

0 commit comments

Comments
 (0)