diff options
Diffstat (limited to 'gi-find-deps.sh.in')
-rwxr-xr-x | gi-find-deps.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gi-find-deps.sh.in b/gi-find-deps.sh.in index 0a356c2..69aecfd 100755 --- a/gi-find-deps.sh.in +++ b/gi-find-deps.sh.in @@ -65,7 +65,7 @@ while read file; do done ;; *.py) - for module in $(grep -h -P "from gi.repository import (\w+)" $file | sed 's:#.*::' | sed -e 's,from gi.repository import,,' -r -e 's:\s+as\s+\w+::g' -e 's:,::g'); do + for module in $(grep -h -P "from gi.repository import (\w+)" $file | sed 's:#.*::' | sed -e 's,from gi.repository import,,' -r -e 's:\s+as\s+\w+::g' -e 's:\s*,\s*: :g'); do split_name_version $module print_req_prov done |