diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2024-04-12 11:02:24 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-04-14 06:31:45 +0100 |
commit | 4b1ef692a9db79321be765c8e38de953ac52a7e1 (patch) | |
tree | 4541a7a253ac53623ff45f2efa92c2ffc9b94f07 /bitbake/bin | |
parent | 8d78b5f9c5cee19ed98e65577bf9e3a325d859b3 (diff) | |
download | poky-4b1ef692a9db79321be765c8e38de953ac52a7e1.tar.gz |
bitbake: prserv: use double quotes by default
To aligh with the hashserv code
(Bitbake rev: 7a6999750791659eaffe49aabfbfba9f37f51913)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Cc: Joshua Watt <JPEWhacker@gmail.com>
Cc: Tim Orling <ticotimo@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake-prserv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/bin/bitbake-prserv b/bitbake/bin/bitbake-prserv index 5be42f3ce5..8c3808fb20 100755 --- a/bitbake/bin/bitbake-prserv +++ b/bitbake/bin/bitbake-prserv | |||
@@ -11,14 +11,14 @@ import optparse | |||
11 | import warnings | 11 | import warnings |
12 | warnings.simplefilter("default") | 12 | warnings.simplefilter("default") |
13 | 13 | ||
14 | sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)),'lib')) | 14 | sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), "lib")) |
15 | 15 | ||
16 | import prserv | 16 | import prserv |
17 | import prserv.serv | 17 | import prserv.serv |
18 | 18 | ||
19 | __version__="1.0.0" | 19 | __version__="1.0.0" |
20 | 20 | ||
21 | PRHOST_DEFAULT='0.0.0.0' | 21 | PRHOST_DEFAULT="0.0.0.0" |
22 | PRPORT_DEFAULT=8585 | 22 | PRPORT_DEFAULT=8585 |
23 | 23 | ||
24 | def main(): | 24 | def main(): |