mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Merge pull request #915 from pimutils/formatting
Make command bit more readable
This commit is contained in:
commit
f2a1afe6d3
1 changed files with 3 additions and 8 deletions
|
|
@ -48,14 +48,9 @@ def main(ical1_filename, ical2_filename):
|
||||||
KDIALOG,
|
KDIALOG,
|
||||||
"--warningyesnocancel",
|
"--warningyesnocancel",
|
||||||
"There was a sync conflict, do you prefer the first entry: \n"
|
"There was a sync conflict, do you prefer the first entry: \n"
|
||||||
+ get_summary(ical1)
|
f"{get_summary(ical1)}...\n(full contents: {ical1_filename})\n\n"
|
||||||
+ "...\n(full contents: "
|
"or the second entry:\n"
|
||||||
+ str(ical1_filename)
|
f"{get_summary(ical2)}...\n(full contents: {ical2_filename})?",
|
||||||
+ " )\n\nor the second entry: \n"
|
|
||||||
+ get_summary(ical2)
|
|
||||||
+ "...\n(full contents: "
|
|
||||||
+ str(ical2_filename)
|
|
||||||
+ " )?",
|
|
||||||
]
|
]
|
||||||
+ additional_args
|
+ additional_args
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue