diff mbox series

[1/3] swupdateclient: Fix the URL entry

Message ID 20230227114929.49105-1-festevam@gmail.com
State Accepted
Headers show
Series [1/3] swupdateclient: Fix the URL entry | expand

Commit Message

Fabio Estevam Feb. 27, 2023, 11:49 a.m. UTC
From: Fabio Estevam <festevam@denx.de>

The current URL is not valid, change it to a valid one.

Signed-off-by: Fabio Estevam <festevam@denx.de>
---
 tools/python/swupdateclient/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/python/swupdateclient/setup.py b/tools/python/swupdateclient/setup.py
index 3b8dbd6cba41..037dbf8cb3ee 100644
--- a/tools/python/swupdateclient/setup.py
+++ b/tools/python/swupdateclient/setup.py
@@ -4,7 +4,7 @@  setup(
     name='swupdateclient',
     version='0.1',
     packages=find_packages(),
-    url='https://github.com/sbabic/swupdate/tools/python/swupdateclient',
+    url='https://github.com/sbabic/swupdate/tree/master/tools/python/swupdateclient',
     license='GPLv3',
     author='Stefano Babic',
     author_email='stefano.babic@swupdate.org',