Browse Source

updatescripts

julien colomb 2 years ago
parent
commit
6c7064950f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      .scripts/datalad_sync.py

+ 1 - 2
.scripts/datalad_sync.py

@@ -25,8 +25,7 @@ dl.status(recursive=True, eval_subdataset_state ='commit', result_renderer ='tai
 commitmessage = input("Optionally enter a commit message, and hit return: ")
 if not commitmessage:
     print("using date as commit message")
-    commitmessage = print("commit on" , datetime.now())
-
+    commitmessage = "commit on " + datetime.now().strftime("%B %d, %Y")
 # sync
 print("update changes from server")
 dl.update(how='merge', recursive=True)