Source: budgie-extras
Version: 1.4.90-2
Severity: serious
Justification: FTBFS
Tags: sid ftbfs patch

Hi,

budgie-extras fails to build due to a pep8 error with pycodestyle
2.9.1-1 (currently in sid). The attached patch fixes the issue.

See the relevant part of the build logs:

./tools/run-pep8
= pycodestyle =                                                                 
                                
checking ./budgie-dropby/copy_flash                                             
                                
checking ./budgie-dropby/checkonwin                                             
                                
checking ./budgie-dropby/dropby_tools.py
./budgie-dropby/dropby_tools.py:133:11: E275 missing whitespace after keyword
make[1]: *** [debian/rules:13: override_dh_auto_test] Error 1
make[1]: Leaving directory '/tmp/autopkgtest.MWCN9F/build.gEw/real-tree'
make: *** [debian/rules:6: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
Fix pep8 error: E275 missing whitespace after keyword
Index: budgie-extras-1.4.90/budgie-dropby/dropby_tools.py
===================================================================
--- budgie-extras-1.4.90.orig/budgie-dropby/dropby_tools.py
+++ budgie-extras-1.4.90/budgie-dropby/dropby_tools.py
@@ -130,4 +130,4 @@ def get_volumes(allvols):
             devdata["free"] = free
             devdata["volume_path"] = fpath
             relevant.append(devdata)
-    return(relevant)
+    return (relevant)

Reply via email to