avoid needless format string position identifiers
[git-mirror.git] / githook.py
index b5286442edda8b93ac9d3c90240df073268fcd07..47a87e95115ac0092e1948ea2fd428c0a500c5ad 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/python3
-# Copyright (c) 2014, Ralf Jung <post@ralfj.de>
+# Copyright (c) 2015, Ralf Jung <post@ralfj.de>
 # All rights reserved.
 # 
 # Redistribution and use in source and binary forms, with or without
@@ -45,7 +45,7 @@ if __name__ == "__main__":
             repo.update_mirrors(ref, oldsha, newsha)
     except Exception as e:
         if repo is not None:
-            repo.mail_owner("There was a problem running the git-mirror git hook:\n\n{0}".format(traceback.format_exc()))
+            repo.mail_owner("There was a problem running the git-mirror git hook:\n\n{}".format(traceback.format_exc()))
         # do not print all the details
-        sys.stderr.write("We have a problem:\n{0}".format('\n'.join(traceback.format_exception_only(type(e), e))))
+        sys.stderr.write("We have a problem:\n{}".format('\n'.join(traceback.format_exception_only(type(e), e))))