articlib 0.2.2__tar.gz → 0.2.3__tar.gz

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.

Potentially problematic release.


This version of articlib might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: articlib
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Small set of tools and utilities in python. Destined to be use in my personal projects.
5
5
  License: MIT
6
6
  Author: Artic42
@@ -24,7 +24,7 @@ class sqliteEngine:
24
24
  self.executeCommand (f"INSERT INTO {table} ({columns}) VALUES ({values});")
25
25
 
26
26
  def updateEntry (self, table, columns, values, condition):
27
- self.executeCommand (f"UPDATE {table} SET {columns} = {values} WHERE {condition};")
27
+ self.executeCommand (f"UPDATE {table} SET {columns} = \"{values}\" WHERE {condition};")
28
28
 
29
29
  def deleteEntry (self, table, condition):
30
30
  self.executeCommand (f"DELETE FROM {table} WHERE {condition};")
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "articlib"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "Small set of tools and utilities in python. Destined to be use in my personal projects."
5
5
  authors = ["Artic42 <engineer@artic42.com>"]
6
6
  license = "MIT"
File without changes
File without changes
File without changes
File without changes