1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-26 04:02:11 +01:00

- return a list instead of a tuple (this was already fixed in the packaging-branch)

This commit is contained in:
Marcus Hüwe 2008-01-17 19:33:02 +00:00
parent a8788c2c4e
commit 2e263514f8

View File

@ -719,7 +719,7 @@ def read_inconflict(dir):
def parseargs(list_of_args): def parseargs(list_of_args):
if list_of_args: if list_of_args:
return list_of_args return list(list_of_args)
else: else:
return [ os.curdir ] return [ os.curdir ]