Skip to content

Commit 074754e

Browse files
committed
added format to the commit message in v 0.0.7
1 parent 0961b58 commit 074754e

7 files changed

Lines changed: 1 addition & 43 deletions

File tree

β€Ž.idea/.gitignoreβ€Ž

Lines changed: 0 additions & 8 deletions
This file was deleted.

β€Ž.idea/inspectionProfiles/profiles_settings.xmlβ€Ž

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.idea/misc.xmlβ€Ž

Lines changed: 0 additions & 4 deletions
This file was deleted.

β€Ž.idea/modules.xmlβ€Ž

Lines changed: 0 additions & 8 deletions
This file was deleted.

β€Ž.idea/pythonProject1.imlβ€Ž

Lines changed: 0 additions & 10 deletions
This file was deleted.

β€Ž.idea/vcs.xmlβ€Ž

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Žgitfun/GitFun.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def init_push(url:str) -> str:
1717
subprocess.getoutput("git init")
1818
subprocess.getoutput("git remote add origin {0}").format(url)
1919
subprocess.getoutput("git add .")
20-
subprocess.getoutput("git commit -m %s")%(commit_message)
20+
subprocess.getoutput("git commit -m {0}").format(commit_message)
2121
return subprocess.getoutput("git push --set-upstream origin master ")
2222

2323

0 commit comments

Comments
Β (0)