py-git2: New Package (#1971)

This commit is contained in:
Elizabeth Fischer
2017-02-17 14:55:22 -05:00
committed by Todd Gamblin
parent 8cb7f3d262
commit 682d5cf164
4 changed files with 141 additions and 1 deletions

View File

@@ -2955,7 +2955,8 @@ def check_identifier(self, id=None):
if not id:
id = self.token.value
if '.' in id:
self.last_token_error("Identifier cannot contain '.'")
self.last_token_error(
"{0}: Identifier cannot contain '.'".format(id))
def parse(string):