From: Jami Kettunen Date: Sun, 15 Jan 2023 04:26:10 +0000 (+0200) Subject: props: Drop unneeded ';' from end of return line X-Git-Tag: 1.4.0~42 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/9aae6c4ab39d12056a8df086f1277d43ab27f14e props: Drop unneeded ';' from end of return line --- diff --git a/tools/helpers/props.py b/tools/helpers/props.py index 0d7f4bc..8b6ca5b 100644 --- a/tools/helpers/props.py +++ b/tools/helpers/props.py @@ -42,5 +42,5 @@ def file_get(args, file, prop): continue k,v = line.partition("=")[::2] if k == prop: - return v; + return v return ""