Skip to content
Snippets Groups Projects
Commit 63a7380d authored by Gwen's avatar Gwen
Browse files

Fix some small typos.

parent eb00923a
No related branches found
No related tags found
No related merge requests found
spider.py 100644 → 100755
......@@ -83,8 +83,8 @@ def main():
parser.add_argument("-l", "--location", help='Path of the sharepoint location e.g. sites/projects/MySite')
args = parser.parse_args()
passwd = getpass.getpass('Password for {}: '.format(args.user))
curl_config = ' '.join(['--user',user+':'+passwd])
get_location(site,location)
curl_config = ' '.join(['--user',args.user+':'+passwd])
get_location(args.site,args.location)
if __name__='__main__':
if __name__=='__main__':
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment