Skip to content
Snippets Groups Projects
Commit a92dfead authored by Staiger, Christine's avatar Staiger, Christine
Browse files

Bytes to GB - divide by 1000

parent c608e21f
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,7 @@ class irodsConnector():
raise error("RESOURCE ERROR: Either resource does not exist or size not set.")
def uploadData(self, source, destination, resource, size, buff = 1024**3,
def uploadData(self, source, destination, resource, size, buff = 1000**3,
force = False, diffs = []):
"""
source: absolute path to file or folder
......@@ -397,7 +397,7 @@ class irodsConnector():
raise
def downloadData(self, source, destination, size, buff = 1024**3, force = False, diffs=[]):
def downloadData(self, source, destination, size, buff = 1000**3, force = False, diffs=[]):
'''
Download object or collection.
source: iRODS collection or data object
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment