1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-03-10 01:41:48 +01:00
Marcus Huewe 674ea78815 Avoid a potential TypeError in util.ArFile.saveTo
If no dir is passed to util.ArFile.saveTo, dir is set to os.getcwd(),
which returns a str. Since self.name is a bytes, the subsequent
os.path.join(dir, self.name) results in a TypeError.
To fix this, use os.getcwdb(), which returns a bytes instead of a
str.
2020-11-22 17:36:17 +01:00
..
2009-12-03 19:19:53 +01:00
2020-08-27 16:56:36 +02:00
2020-11-22 14:34:37 +00:00
2014-08-12 15:01:16 +02:00
2020-04-14 14:50:24 +10:00
2020-11-10 14:31:25 +01:00
2019-08-29 16:11:17 +02:00