Browse code

Merge pull request #123 from daub815/master

Fixed typo in --dry-run exit message

Michal Ludvig authored on 2013/03/01 17:50:10
Showing 1 changed files
... ...
@@ -302,7 +302,7 @@ def cmd_object_put(args):
302 302
                 nicekey = "<stdin>"
303 303
             output(u"upload: %s -> %s" % (nicekey, local_list[key]['remote_uri']))
304 304
 
305
-        warning(u"Exitting now because of --dry-run")
305
+        warning(u"Exiting now because of --dry-run")
306 306
         return
307 307
 
308 308
     seq = 0
... ...
@@ -415,7 +415,7 @@ def cmd_object_get(args):
415 415
         for key in remote_list:
416 416
             output(u"download: %s -> %s" % (remote_list[key]['object_uri_str'], remote_list[key]['local_filename']))
417 417
 
418
-        warning(u"Exitting now because of --dry-run")
418
+        warning(u"Exiting now because of --dry-run")
419 419
         return
420 420
 
421 421
     seq = 0
... ...
@@ -512,7 +512,7 @@ def subcmd_object_del_uri(uri_str, recursive = None):
512 512
         for key in remote_list:
513 513
             output(u"delete: %s" % remote_list[key]['object_uri_str'])
514 514
 
515
-        warning(u"Exitting now because of --dry-run")
515
+        warning(u"Exiting now because of --dry-run")
516 516
         return
517 517
 
518 518
     for key in remote_list:
... ...
@@ -553,7 +553,7 @@ def subcmd_cp_mv(args, process_fce, action_str, message):
553 553
         for key in remote_list:
554 554
             output(u"%s: %s -> %s" % (action_str, remote_list[key]['object_uri_str'], remote_list[key]['dest_name']))
555 555
 
556
-        warning(u"Exitting now because of --dry-run")
556
+        warning(u"Exiting now because of --dry-run")
557 557
         return
558 558
 
559 559
     seq = 0
... ...
@@ -661,7 +661,7 @@ def cmd_sync_remote2remote(args):
661 661
                 output(u"delete: %s" % dst_list[key]['object_uri_str'])
662 662
         for key in src_list:
663 663
             output(u"Sync: %s -> %s" % (src_list[key]['object_uri_str'], src_list[key]['target_uri']))
664
-        warning(u"Exitting now because of --dry-run")
664
+        warning(u"Exiting now because of --dry-run")
665 665
         return
666 666
 
667 667
     # if there are copy pairs, we can't do delete_before, on the chance
... ...
@@ -765,7 +765,7 @@ def cmd_sync_remote2local(args):
765 765
         for key in update_list:
766 766
             output(u"download: %s -> %s" % (update_list[key]['object_uri_str'], update_list[key]['local_filename']))
767 767
 
768
-        warning(u"Exitting now because of --dry-run")
768
+        warning(u"Exiting now because of --dry-run")
769 769
         return
770 770
 
771 771
     # if there are copy pairs, we can't do delete_before, on the chance
... ...
@@ -1077,7 +1077,7 @@ def cmd_sync_local2remote(args):
1077 1077
                 for key in remote_list:
1078 1078
                     output(u"delete: %s" % remote_list[key]['object_uri_str'])
1079 1079
 
1080
-            warning(u"Exitting now because of --dry-run")
1080
+            warning(u"Exiting now because of --dry-run")
1081 1081
             return
1082 1082
 
1083 1083
         # if there are copy pairs, we can't do delete_before, on the chance
... ...
@@ -1199,7 +1199,7 @@ def cmd_setacl(args):
1199 1199
         for key in remote_list:
1200 1200
             output(u"setacl: %s" % remote_list[key]['object_uri_str'])
1201 1201
 
1202
-        warning(u"Exitting now because of --dry-run")
1202
+        warning(u"Exiting now because of --dry-run")
1203 1203
         return
1204 1204
 
1205 1205
     seq = 0