Closed GoogleCodeExporter closed 8 years ago
I don't have rights to comment directly in your clone, but I think it would be
better to condense:
except KeyboardInterrupt:
print # so we finish off the raw_input line
cleanupAndExit(0)
except EOFError:
print # so we finish off the raw_input line
cleanupAndExit(0)
to
except (KeyboardInterrupt, EOFError):
print # so we finish off the raw_input line
cleanupAndExit(0)
Original comment by gregnea...@mac.com
on 17 Jul 2014 at 6:15
Ryan: if you make the change, I will merge. Or I can just make the change
myself. Your call.
Original comment by greg.nea...@disneyanimation.com
on 22 Jul 2014 at 5:11
I decided to just implement the fix and close the issue.
https://code.google.com/p/munki/source/detail?r=bb4fd416f8fe55999f3b51fa7c735029
d30ec4fa&name=Munki2
Original comment by gregnea...@mac.com
on 25 Jul 2014 at 10:23
Original issue reported on code.google.com by
ryan.manly@gmail.com
on 17 Jul 2014 at 5:59