mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 11:12:47 +01:00
Allow no registry file to be specified.
This commit is contained in:
parent
6ca78924f3
commit
81339b68b6
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user