Skip to content

Commit

Permalink
Fixing URLError for ltp link
Browse files Browse the repository at this point in the history
Fix issue caused by last commit of extra spaces in link

Signed-off-by: Ayush Jain <[email protected]>
  • Loading branch information
AYUSHJAIN951 committed Apr 5, 2024
1 parent dd7d9b7 commit c905638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/fsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def setUp(self):

if not os.path.exists(self.output):
os.makedirs(self.output)
repo = 'https: // github.com/linux-test-project/ltp/archive/master.zip'
repo = 'https://github.com/linux-test-project/ltp/archive/master.zip'
url = self.params.get('url', default=repo)
match = next((ext for ext in [".zip", ".tar"] if ext in url), None)
tarball = ''
Expand Down

0 comments on commit c905638

Please sign in to comment.