Skip to content

Commit

Permalink
fix debug message (#50)
Browse files Browse the repository at this point in the history
* fix debug message

* more performant string formatter
  • Loading branch information
pymonger authored Apr 15, 2020
1 parent 8158891 commit 61bfdae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdscli/adapters/hysds/pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def export(args):
outdir = normpath(args.outdir)
export_name = "{}.sdspkg".format(cont_id.replace(':', '-'))
export_dir = os.path.join(outdir, export_name)
logger.debug("export_dir: %d" % export_dir)
logger.debug("export_dir: %s" % export_dir)

if os.path.exists(export_dir): # if directory exists, stop
logger.error("SDS package export directory {} exists. Not continuing.".format(export_dir))
Expand Down

0 comments on commit 61bfdae

Please sign in to comment.