Commit 0790b4cc authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Minor changes to 'getOSPath()' method.

parent ab5ce8c5
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -95,10 +95,12 @@ class DbConnector(object):
        osPath = result[0]["os_path"]
        contentLength = result[0]["content_length"]
        if tstampWrappedDir is None:
            fullPath = basePath + "/" + userName + osPath
            baseSrcPath = basePath + "/" + userName
        else:
            fullPath = basePath + "/" + userName + "/" + tstampWrappedDir + osPath
            baseSrcPath = basePath + "/" + userName + "/" + tstampWrappedDir
        fullPath = baseSrcPath + osPath
        fileInfo = {   
                       "baseSrcPath": baseSrcPath,
                       "fullPath": fullPath, 
                       "storageType": storageType, 
                       "username": userName,