Allow no registry file to be specified.

This commit is contained in:
Jeremy Fincher 2004-01-18 08:00:38 +00:00
parent 6ca78924f3
commit 81339b68b6

View File

@ -113,9 +113,13 @@ if __name__ == '__main__':
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
if not args or len(args) > 1: if len(args) > 1:
parser.error() parser.error()
elif not args:
print 'No registry file given; starting with a clean slate.'
print 'Output registry will be written to registry.conf.'
registryFilename = 'registry.conf'
else:
registryFilename = args.pop() registryFilename = args.pop()
try: try:
registry.open(registryFilename) registry.open(registryFilename)