aboutsummaryrefslogtreecommitdiff
path: root/gantools
diff options
context:
space:
mode:
authorVee9ahd1 <[email protected]>2019-05-20 22:44:51 -0400
committerVee9ahd1 <[email protected]>2019-05-20 22:44:51 -0400
commit63c9b4d4e935b9cc30d0fb2991dc4b67f9f1bef4 (patch)
tree8db9d3fc73787f52917ca4f19e731246390a5c2b /gantools
parentde5c741e6baeefdde6e481dd33a1a8fe391eefb7 (diff)
fixed string cat bug
Diffstat (limited to 'gantools')
-rw-r--r--gantools/cli.py2
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.')