summaryrefslogtreecommitdiff
path: root/download-images.py
diff options
context:
space:
mode:
Diffstat (limited to 'download-images.py')
-rwxr-xr-xdownload-images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/download-images.py b/download-images.py
index 5fa6a98..7d6fa38 100755
--- a/download-images.py
+++ b/download-images.py
@@ -19,7 +19,7 @@ for (dirname, dirs, files) in os.walk(path):
if int(filename.split('DSC')[1].split(".ARW")[0]) > int(lastfile.split('DSC')[1].split(".ARW")[0]):
sorter.append([int(filename.split('DSC')[1].split(".ARW")[0]), filename])
for f in sorted(sorter):
- dest = os.path.join(home_directory, 'pictures', 'inbox')
+ dest = os.path.join(home_directory, 'photos', 'inbox')
if not os.path.exists(dest):
os.makedirs(dest)
print("copying:", dirn+'/'+f[1], "--->", dest+'/'+f[1])