django-restit 4.1.17__py3-none-any.whl → 4.1.18__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-restit
3
- Version: 4.1.17
3
+ Version: 4.1.18
4
4
  Summary: A Rest Framework for DJANGO
5
5
  License: MIT
6
6
  Author: Ian Starnes
@@ -337,12 +337,12 @@ pushit/rpc/githooks.py,sha256=hjL1x0qN_YB4QZfwrOAVg-biEFRreKp8LK4FaLUBHyw,1756
337
337
  pushit/rpc/legacy.py,sha256=9xsZH1S70htIb0bwKENfhTe-uHvyqSTiPiwYTlLWS3E,5028
338
338
  pushit/rpc/products.py,sha256=JFNN0VYsZQ9VJ5RZ3vD0m2hhsXEIB5Koz66inlMzx6Y,378
339
339
  pushit/static/js/models_pushit.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
- pushit/tq.py,sha256=J59EP6tcBYG8j4TYbhWmvwDedfqaBTsJ3boAkyJgJ5Q,414
340
+ pushit/tq.py,sha256=uD0g1Jj1n5IAlbnNOa_YORfQHEXMW30eYpei35lH3so,424
341
341
  pushit/utils.py,sha256=IeTCGa-164nmB1jIsK1lu1O1QzUhS3BKfuXHGjCW-ck,2121
342
342
  rest/.gitignore,sha256=TbEvWRMnAiajCTOdhiNrd9eeCAaIjRp9PRjE_VkMM5g,118
343
343
  rest/README.md,sha256=V3ETc-cJu8PZIbKr9xSe_pA4JEUpC8Dhw4bQeVCDJPw,5460
344
344
  rest/RemoteEvents.py,sha256=nL46U7AuxIrlw2JunphR1tsXyqi-ep_gD9CYGpYbNgE,72
345
- rest/__init__.py,sha256=nCUr_Hj8IID0Hyg3bR85jRA-c5FTVRYklYpb1iEV8vM,121
345
+ rest/__init__.py,sha256=Fw6D7L-2hy-QJwany2_fJCS33PGw8CQJLHMG3xW3P8U,121
346
346
  rest/arc4.py,sha256=y644IbF1ec--e4cUJ3KEYsewTCITK0gmlwa5mJruFC0,1967
347
347
  rest/cache.py,sha256=1Qg0rkaCJCaVP0-l5hZg2CIblTdeBSlj_0fP6vlKUpU,83
348
348
  rest/crypto/__init__.py,sha256=Tl0U11rgj1eBYqd6OXJ2_XSdNLumW_JkBZnaJqI6Ldw,72
@@ -452,7 +452,7 @@ ws4redis/servers/uwsgi.py,sha256=VyhoCI1DnVFqBiJYHoxqn5Idlf6uJPHvfBKgkjs34mo,172
452
452
  ws4redis/settings.py,sha256=lF-6nzv7SWjmFgmontpZKdSBhp8q4FhvFOcEYZGR8pc,1411
453
453
  ws4redis/utf8validator.py,sha256=S0OlfjeGRP75aO6CzZsF4oTjRQAgR17OWE9rgZdMBZA,5122
454
454
  ws4redis/websocket.py,sha256=R0TUyPsoVRD7Y_oU7w2I6NL4fPwiz5Vl94-fUkZgLHA,14848
455
- django_restit-4.1.17.dist-info/LICENSE.md,sha256=VHN4hhEeVOoFjtG-5fVv4jesA4SWi0Z-KgOzzN6a1ps,1068
456
- django_restit-4.1.17.dist-info/METADATA,sha256=l-yfw-tbIU7VK7JQpSJ4pt4Hzz7MzYdi3XXQcURiqqI,7532
457
- django_restit-4.1.17.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
458
- django_restit-4.1.17.dist-info/RECORD,,
455
+ django_restit-4.1.18.dist-info/LICENSE.md,sha256=VHN4hhEeVOoFjtG-5fVv4jesA4SWi0Z-KgOzzN6a1ps,1068
456
+ django_restit-4.1.18.dist-info/METADATA,sha256=f-HuGeguqB19zvqD2YcgHKq7Oli3nBWt5cA-rWcV1L8,7532
457
+ django_restit-4.1.18.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
458
+ django_restit-4.1.18.dist-info/RECORD,,
pushit/tq.py CHANGED
@@ -6,6 +6,6 @@ def run_update(task):
6
6
  if proj_info is None:
7
7
  task.failed(f"{utils.settings.HOSTNAME} - no project for {task.data.project}:{task.data.branch}")
8
8
  else:
9
- utils.updateCode(task.data.update_cmd, task.data.branch)
9
+ utils.updateCode(proj_info.get("updater", None), task.data.branch)
10
10
  task.log(f"{utils.settings.HOSTNAME} - completed")
11
11
  task.completed()
rest/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  from .uberdict import UberDict # noqa: F401
2
2
  from .settings_helper import settings # noqa: F401
3
3
 
4
- __version__ = "4.1.17"
4
+ __version__ = "4.1.18"