2795: Regression: cannot create backups from command-line

svn: r12317
This commit is contained in:
Benny Malengier 2009-03-11 11:51:56 +00:00
parent 90657dd664
commit 2172018305

View File

@ -163,14 +163,15 @@ COMMENTS = _("GRAMPS (Genealogical Research and Analysis "
"Management Programming System) is a personal " "Management Programming System) is a personal "
"genealogy program.") "genealogy program.")
AUTHORS = [ AUTHORS = [
"Donald N. Allingham", "Alexander Roitman",
"Alexander Roitman", "Benny Malengier",
"Richard Taylor", "Brian Matherly",
"Martin Hawlisch",
"Brian Matherly",
"Tim Waugh",
"Donald A. Peterson", "Donald A. Peterson",
"David Hampton", "Donald N. Allingham",
"David Hampton",
"Martin Hawlisch",
"Richard Taylor",
"Tim Waugh",
] ]
AUTHORS_FILE = os.path.join(DATA_DIR, "authors.xml") AUTHORS_FILE = os.path.join(DATA_DIR, "authors.xml")
@ -204,7 +205,6 @@ POPT_TABLE = [
("open", 'O', str, None, 0, "Open family tree", "FAMILY_TREE"), ("open", 'O', str, None, 0, "Open family tree", "FAMILY_TREE"),
("import", 'i', str, None, 0, "Import file", "FILENAME"), ("import", 'i', str, None, 0, "Import file", "FILENAME"),
("export", 'e', str, None, 0, "Export file", "FILENAME"), ("export", 'e', str, None, 0, "Export file", "FILENAME"),
("output", 'o', str, None, 0, "Write file", "FILENAME"),
("format", 'f', str, None, 0, 'Specify format', "FORMAT"), ("format", 'f', str, None, 0, 'Specify format', "FORMAT"),
("action", 'a', str, None, 0, 'Specify action', "ACTION"), ("action", 'a', str, None, 0, 'Specify action', "ACTION"),
("options", 'p', str, None, 0, 'Specify options', "OPTIONS_STRING"), ("options", 'p', str, None, 0, 'Specify options', "OPTIONS_STRING"),
@ -223,6 +223,7 @@ LONGOPTS = [
"disable-crash-dialog", "disable-crash-dialog",
"enable-sound", "enable-sound",
"espeaker=", "espeaker=",
"export=",
"force-unlock", "force-unlock",
"format=", "format=",
"gdk-debug=", "gdk-debug=",
@ -241,7 +242,6 @@ LONGOPTS = [
"oaf-private", "oaf-private",
"open=", "open=",
"options=", "options=",
"output=",
"screen=", "screen=",
"sm-client-id=", "sm-client-id=",
"sm-config-prefix=", "sm-config-prefix=",
@ -251,6 +251,6 @@ LONGOPTS = [
"version", "version",
] ]
SHORTOPTS = "O:i:e:o:f:a:p:d:lLhu?" SHORTOPTS = "O:i:e:f:a:p:d:lLhu?"