This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pg2mysql SQL Fixer | |
| # (c)2015 Rob "N3X15" Nelson <nexisentertainment@gmail.com> | |
| # | |
| # Available under the MIT Open-Source License | |
| # | |
| import os | |
| import sys | |
| import re |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @command(r"testmerge\s*\[?(\d+)\]?$") | |
| async def test_merger(content, match, message): | |
| if not isowner(message.author): | |
| await output(message.channel, "No") | |
| return | |
| id = int(match.group(1)) | |
| async with aiohttp.ClientSession() as session: | |
| # GET /repos/:owner/:repo/pulls/:number | |
| url = github_url("/repos/{}/{}/pulls/{}".format(get_config("github.repo.owner"), get_config("github.repo.name"), id)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "_cmd_old": "C:\\Program Files (x86)\\BYOND\\bin\\dm.exe", | |
| "cmd": "F:\\PATH\\TO\\vgstation13\\byond\\bin\\dm.exe", | |
| "args": [ "vgstation13.dme" ], | |
| "sh": false, | |
| "errorMatch": | |
| [ | |
| "\n(?<file>[\\\\\/0-9a-zA-Z\\._]+):(?<line>\\d+).*" | |
| ] | |
| } |
OlderNewer