1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-27 20:52:14 +01:00

- status: fixed state

if a file with state 'R' is removed from the wc its new state is '!'
This commit is contained in:
Marcus Huewe 2010-09-02 18:40:18 +02:00
parent feab43ed2f
commit 7dc2356c0e

View File

@ -1306,7 +1306,7 @@ class Package:
state = 'C' state = 'C'
elif n in self.skipped: elif n in self.skipped:
state = 'S' state = 'S'
elif n in self.to_be_added and exists_in_store: elif n in self.to_be_added and exists and exists_in_store:
state = 'R' state = 'R'
elif n in self.to_be_added and exists: elif n in self.to_be_added and exists:
state = 'A' state = 'A'