diff options
author | Vee9ahd1 <[email protected]> | 2019-05-20 22:44:51 -0400 |
---|---|---|
committer | Vee9ahd1 <[email protected]> | 2019-05-20 22:44:51 -0400 |
commit | 63c9b4d4e935b9cc30d0fb2991dc4b67f9f1bef4 (patch) | |
tree | 8db9d3fc73787f52917ca4f19e731246390a5c2b | |
parent | de5c741e6baeefdde6e481dd33a1a8fe391eefb7 (diff) |
fixed string cat bug
-rw-r--r-- | gantools/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gantools/cli.py b/gantools/cli.py index b8e3d4b..d15e01d 100644 --- a/gantools/cli.py +++ b/gantools/cli.py @@ -38,7 +38,7 @@ def main(): ims = gan.sample(z_seq, label_seq, truncation_seq, args.nbatch) # save images to file - print('Saving image files: '+args.pathprefix) + print('Saving image files: '+str(args.pathprefix)) image_utils.save_images(ims, args.pathprefix) print('Done.') |