##// END OF EJS Templates
githelp: rewrite a Yoda conditional
Matt Harbison -
r38133:10befe8e default
parent child Browse files
Show More
@@ -962,7 +962,7 b' def svn(ui, repo, *args, **kwargs):'
962 if not args:
962 if not args:
963 raise error.Abort(_('missing svn command'))
963 raise error.Abort(_('missing svn command'))
964 svncmd = args[0]
964 svncmd = args[0]
965 if not svncmd in gitsvncommands:
965 if svncmd not in gitsvncommands:
966 raise error.Abort(_('unknown git svn command "%s"') % (svncmd))
966 raise error.Abort(_('unknown git svn command "%s"') % (svncmd))
967
967
968 args = args[1:]
968 args = args[1:]
General Comments 0
You need to be logged in to leave comments. Login now