Added additional info to error message for --add-to-album

This commit is contained in:
Rhet Turnbull
2021-06-18 14:03:59 -07:00
parent f1902b7fd4
commit 64bb07a026
3 changed files with 4 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
""" version info """
__version__ = "0.42.36"
__version__ = "0.42.37"

View File

@@ -2124,7 +2124,7 @@ def query(
album_query.add_list(photos)
except Exception as e:
click.secho(
f"Error adding photos to album {add_to_album}",
f"Error adding photos to album {add_to_album}: {e}",
fg=CLI_COLOR_ERROR,
err=True,
)