| 241 usesandbox = repo_name == 'zandronum-sandbox' or repo_name == 'zandronum-sandbox-stable' |
241 usesandbox = repo_name == 'zandronum-sandbox' or repo_name == 'zandronum-sandbox-stable' |
| 242 repo_owner = 'Torr_Samaho' if not usesandbox else 'crimsondusk' |
242 repo_owner = 'Torr_Samaho' if not usesandbox else 'crimsondusk' |
| 243 zanrepo = hgapi.Repo (repo_name) |
243 zanrepo = hgapi.Repo (repo_name) |
| 244 commit_data = [] |
244 commit_data = [] |
| 245 delimeter = '@@@@@@@@@@' |
245 delimeter = '@@@@@@@@@@' |
| 246 print 'Checking %s for updates' % repo_name |
246 # print 'Checking %s for updates' % repo_name |
| 247 |
247 |
| 248 try: |
248 try: |
| 249 data = zanrepo.hg_command ('incoming', '--quiet', '--template', |
249 data = zanrepo.hg_command ('incoming', '--quiet', '--template', |
| 250 '{node|short} {desc}' + delimeter) |
250 '{node|short} {desc}' + delimeter) |
| 251 except hgapi.hgapi.HgException as e: |
251 except hgapi.hgapi.HgException as e: |