Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

githubpullrequests

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

githubpullrequests - pypi Package Compare versions

Comparing version
0.3.2
to
0.3.3
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: githubpullrequests
Version: 0.3.2
Version: 0.3.3
Summary: Create Pull Requests, using GitHub API and a list of repositories

@@ -5,0 +5,0 @@ Home-page: https://github.com/evandrocoan/githubpullrequests

@@ -62,3 +62,3 @@ #!/usr/bin/env python3

#
version = '0.3.2'
version = '0.3.3'

@@ -65,0 +65,0 @@ install_requires=[

Metadata-Version: 2.1
Name: githubpullrequests
Version: 0.3.2
Version: 0.3.3
Summary: Create Pull Requests, using GitHub API and a list of repositories

@@ -5,0 +5,0 @@ Home-page: https://github.com/evandrocoan/githubpullrequests

@@ -232,11 +232,19 @@ #!/usr/bin/env python3

self._save_data( 0 )
self._save_data( 0, gitmodules_file )
free_mutex_lock()
def _save_data(self, index):
def _save_data(self, index, gitmodules_file):
if not self.last_module_file: return
self.lastSection[self.last_module_file] = index
move_to_dict_beginning( self.lastSection, self.last_module_file )
if index:
self._save_data2(index, self.last_module_file)
else:
for filename in gitmodules_file:
self._save_data2(0, filename)
def _save_data2(self, index, file_name):
self.lastSection[file_name] = index
move_to_dict_beginning( self.lastSection, file_name )
while len( self.lastSection ) > MAXIMUM_WORSPACES_ENTRIES:

@@ -243,0 +251,0 @@ pop_dict_last_item( self.lastSection )