Skip to content

Commit

Permalink
bug fix for :: error
Browse files Browse the repository at this point in the history
  • Loading branch information
leepc12 committed Jul 4, 2019
1 parent 1f41dd9 commit 30d5990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion caper/caper_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from distutils.util import strtobool


__version__ = '0.3.11'
__version__ = '0.3.12'

DEFAULT_JAVA_HEAP_SERVER = '5G'
DEFAULT_JAVA_HEAP_RUN = '1G'
Expand Down
2 changes: 1 addition & 1 deletion caper/caper_uri.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def copy(self, target_uri_type=None, target_uri=None, soft_link=False,
# remove .lock file
cu_lock.rm(quiet=True)

if CaperURI.VERBOSE and uri_type not in (URI_URL,)::
if CaperURI.VERBOSE and uri_type not in (URI_URL,):
print('[CaperURI] {method} {action}, target: {target}'.format(
method=method, action=action, target=path))
return path
Expand Down

0 comments on commit 30d5990

Please sign in to comment.