mirror of
https://github.com/jopohl/urh.git
synced 2026-02-20 01:31:18 +01:00
add gitignore + ignore pycache dir for plugins
This commit is contained in:
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Pycharm
|
||||
.idea/
|
||||
|
||||
tests/data/URHProject.xml
|
||||
@@ -35,6 +35,8 @@ class PluginManager(object):
|
||||
settings = constants.SETTINGS
|
||||
|
||||
for d in plugin_dirs:
|
||||
if d == "__pycache__":
|
||||
continue
|
||||
try:
|
||||
class_module = self.load_plugin(d)
|
||||
plugin = class_module()
|
||||
|
||||
Reference in New Issue
Block a user