Command line export-> default to gramps

svn: r1549
This commit is contained in:
Alex Roitman 2003-05-20 18:33:14 +00:00
parent 38744beba8
commit ee13c47370

View File

@ -182,7 +182,13 @@ class Gramps:
outformat = 'gedcom' outformat = 'gedcom'
elif string.upper(outfname[-3:]) == "TGZ": elif string.upper(outfname[-3:]) == "TGZ":
outformat = 'gramps-pkg' outformat = 'gramps-pkg'
elif os.path.isdir(outfname): elif not os.path.isfile(outfname):
if not os.path.isdir(outfname):
try:
os.makedirs(outfname,0700)
except:
print "Cannot create directory %s" % outfname
os._exit(1)
outformat = 'gramps' outformat = 'gramps'
else: else:
print "Unrecognized format for output file %s" % outfname print "Unrecognized format for output file %s" % outfname