Bladeren bron

config/irc_config.py -> config/irc.py; secure_config.py -> secure.py; update in files

tags/v0.1
Ben Kurtovic 13 jaren geleden
bovenliggende
commit
2350ba9cef
8 gewijzigde bestanden met toevoegingen van 7 en 7 verwijderingen
  1. +1
    -1
      .gitignore
  2. +0
    -0
      config/irc.py
  3. +0
    -0
      config/secure.default.py
  4. +1
    -1
      irc/commands/afc_status.py
  5. +1
    -1
      irc/commands/chanops.py
  6. +1
    -1
      irc/commands/git.py
  7. +2
    -2
      irc/frontend.py
  8. +1
    -1
      irc/watcher.py

+ 1
- 1
.gitignore Bestand weergeven

@@ -1,2 +1,2 @@
*.pyc *.pyc
secure_config.py
config/secure.py

config/irc_config.py → config/irc.py Bestand weergeven


config/secure_config.py.default → config/secure.default.py Bestand weergeven


+ 1
- 1
irc/commands/afc_status.py Bestand weergeven

@@ -6,7 +6,7 @@ import json
import re import re
import urllib import urllib


from config.irc_config import *
from config.irc import *
from irc.base_command import BaseCommand from irc.base_command import BaseCommand


class AFCStatus(BaseCommand): class AFCStatus(BaseCommand):


+ 1
- 1
irc/commands/chanops.py Bestand weergeven

@@ -3,7 +3,7 @@
# Voice/devoice/op/deop users in the channel. # Voice/devoice/op/deop users in the channel.


from irc.base_command import BaseCommand from irc.base_command import BaseCommand
from config.irc_config import *
from config.irc import *


class ChanOps(BaseCommand): class ChanOps(BaseCommand):
def get_hooks(self): def get_hooks(self):


+ 1
- 1
irc/commands/git.py Bestand weergeven

@@ -4,7 +4,7 @@


import shlex, subprocess, re import shlex, subprocess, re


from config.irc_config import *
from config.irc import *
from irc.base_command import BaseCommand from irc.base_command import BaseCommand


class Git(BaseCommand): class Git(BaseCommand):


+ 2
- 2
irc/frontend.py Bestand weergeven

@@ -3,8 +3,8 @@
## Imports ## Imports
import re import re


from config.irc_config import *
from config.secure_config import *
from config.irc import *
from config.secure import *


from irc import command_handler from irc import command_handler
from irc.connection import Connection from irc.connection import Connection


+ 1
- 1
irc/watcher.py Bestand weergeven

@@ -3,7 +3,7 @@
## Imports ## Imports
import re import re


from config.irc_config import *
from config.irc import *


from irc.connection import Connection from irc.connection import Connection
from irc.rc import RC from irc.rc import RC


Laden…
Annuleren
Opslaan